mapl: add hpcx-mpi (#47793)
This commit is contained in:
parent
60e3e645e8
commit
a042bdfe0b
@ -383,6 +383,7 @@ def cmake_args(self):
|
||||
# - MVAPICH --> mvapich
|
||||
# - HPE MPT --> mpt
|
||||
# - Cray MPICH --> mpich
|
||||
# - HPC-X --> openmpi
|
||||
|
||||
if self.spec.satisfies("^mpich"):
|
||||
args.append(self.define("MPI_STACK", "mpich"))
|
||||
@ -398,6 +399,8 @@ def cmake_args(self):
|
||||
args.append(self.define("MPI_STACK", "mpt"))
|
||||
elif self.spec.satisfies("^cray-mpich"):
|
||||
args.append(self.define("MPI_STACK", "mpich"))
|
||||
elif self.spec.satisfies("^hpcx-mpi"):
|
||||
args.append(self.define("MPI_STACK", "openmpi"))
|
||||
else:
|
||||
raise InstallError("Unsupported MPI stack")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user