Skip to content
Snippets Groups Projects
Commit 9aeea986 authored by Lorenz Huedepohl's avatar Lorenz Huedepohl
Browse files

Support pgi + openmpi combination

parent 6b113596
Branches
No related tags found
No related merge requests found
Pipeline #68903 passed
......@@ -120,12 +120,17 @@ def mpi_module(mpi_repo):
def valid_pgi_mpi(pgi, mpi):
if "impi" not in mpi:
return False
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):
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment