diff options
author | Mikael Simberg <mikael.simberg@iki.fi> | 2024-02-19 11:58:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-19 11:58:31 +0100 |
commit | a1f90620c36deac633d9dd84a46b26e2ee60173a (patch) | |
tree | 902fb8bbed6e5dee70349e9e7d87d67829d5f6b8 /var | |
parent | 668879141f4d0ac51013ae05efbd9aadcd37930a (diff) | |
download | spack-a1f90620c36deac633d9dd84a46b26e2ee60173a.tar.gz spack-a1f90620c36deac633d9dd84a46b26e2ee60173a.tar.bz2 spack-a1f90620c36deac633d9dd84a46b26e2ee60173a.tar.xz spack-a1f90620c36deac633d9dd84a46b26e2ee60173a.zip |
umpire: depend on camp~rocm when umpire itself has ~rocm (#42701)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/umpire/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/umpire/package.py b/var/spack/repos/builtin/packages/umpire/package.py index 6a83dddc90..48ee22cf91 100644 --- a/var/spack/repos/builtin/packages/umpire/package.py +++ b/var/spack/repos/builtin/packages/umpire/package.py @@ -195,6 +195,7 @@ class Umpire(CachedCMakePackage, CudaPackage, ROCmPackage): depends_on("camp@main", when="@develop") depends_on("camp+openmp", when="+openmp") depends_on("camp~cuda", when="~cuda") + depends_on("camp~rocm", when="~rocm") with when("@5.0.0:"): with when("+cuda"): |