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