summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Rood <jon.rood@nrel.gov>2024-11-06 15:47:44 -0700
committerGitHub <noreply@github.com>2024-11-06 15:47:44 -0700
commit57a90c91a451256bae441bd2097924374e9584b8 (patch)
tree14d50be0ad94fa7558dfa26405ada6a4e8c87779
parent8f4a0718bf60eb3eb5284331d93b28233e22d19f (diff)
downloadspack-57a90c91a451256bae441bd2097924374e9584b8.tar.gz
spack-57a90c91a451256bae441bd2097924374e9584b8.tar.bz2
spack-57a90c91a451256bae441bd2097924374e9584b8.tar.xz
spack-57a90c91a451256bae441bd2097924374e9584b8.zip
nalu-wind: fix hypre constraints (#47474)
-rw-r--r--var/spack/repos/builtin/packages/nalu-wind/package.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/nalu-wind/package.py b/var/spack/repos/builtin/packages/nalu-wind/package.py
index 3ebf50b3af..f7a481f2d6 100644
--- a/var/spack/repos/builtin/packages/nalu-wind/package.py
+++ b/var/spack/repos/builtin/packages/nalu-wind/package.py
@@ -93,16 +93,16 @@ class NaluWind(CMakePackage, CudaPackage, ROCmPackage):
when="+cuda cuda_arch={0}".format(_arch),
)
depends_on(
- "hypre@develop +mpi+cuda~int64~superlu-dist cuda_arch={0}".format(_arch),
+ "hypre@2.30.0: +cuda cuda_arch={0}".format(_arch),
when="+hypre+cuda cuda_arch={0}".format(_arch),
)
for _arch in ROCmPackage.amdgpu_targets:
depends_on(
- "trilinos@13.4: ~shared+rocm+rocm_rdc amdgpu_target={0}".format(_arch),
+ "trilinos~shared+rocm+rocm_rdc amdgpu_target={0}".format(_arch),
when="+rocm amdgpu_target={0}".format(_arch),
)
depends_on(
- "hypre+rocm amdgpu_target={0}".format(_arch),
+ "hypre@2.30.0: +rocm amdgpu_target={0}".format(_arch),
when="+hypre+rocm amdgpu_target={0}".format(_arch),
)