Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpcdf
obs
osc-plugins
Commits
9aeea986
Commit
9aeea986
authored
Feb 10, 2020
by
Lorenz Huedepohl
Browse files
Support pgi + openmpi combination
parent
6b113596
Pipeline
#68903
passed with stage
in 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
mpcdf_common.py
View file @
9aeea986
...
...
@@ -120,11 +120,16 @@ def mpi_module(mpi_repo):
def
valid_pgi_mpi
(
pgi
,
mpi
):
if
"impi"
not
in
mpi
:
return
False
if
"2017"
in
mpi
:
return
False
return
True
if
"impi"
in
mpi
:
if
"2017"
in
mpi
:
return
False
else
:
return
True
if
"openmpi_4"
==
mpi
:
return
True
return
False
def
valid_mpi
(
compiler
,
mpi
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment