diff options
author | Richard Berger <rberger@lanl.gov> | 2023-08-24 19:17:24 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-24 18:17:24 -0700 |
commit | e9efa1df755e84172167d2a5d5a7a3ed154342e4 (patch) | |
tree | 36401790100c389fd284df870833f049f32e5c6c /var | |
parent | 884a5b8b07c881d1dd19961652db5c6bfce35f65 (diff) | |
download | spack-e9efa1df755e84172167d2a5d5a7a3ed154342e4.tar.gz spack-e9efa1df755e84172167d2a5d5a7a3ed154342e4.tar.bz2 spack-e9efa1df755e84172167d2a5d5a7a3ed154342e4.tar.xz spack-e9efa1df755e84172167d2a5d5a7a3ed154342e4.zip |
legion: depend on cray-pmi when using gasnet and cray-mpich (#39614)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/legion/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/legion/package.py b/var/spack/repos/builtin/packages/legion/package.py index 5304d74799..9b0d11112d 100644 --- a/var/spack/repos/builtin/packages/legion/package.py +++ b/var/spack/repos/builtin/packages/legion/package.py @@ -50,7 +50,7 @@ class Legion(CMakePackage, ROCmPackage): depends_on("ucx", when="network=ucx") depends_on("ucx", when="conduit=ucx") depends_on("mpi", when="conduit=mpi") - depends_on("cray-pmi", when="conduit=ofi-slingshot11 ^cray-mpich") + depends_on("cray-pmi", when="network=gasnet ^cray-mpich") depends_on("cuda@10.0:11.9", when="+cuda_unsupported_compiler @:23.03.0") depends_on("cuda@10.0:11.9", when="+cuda @:23.03.0") depends_on("cuda@10.0:12.2", when="+cuda_unsupported_compiler @23.06.0:") |