summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorpsakievich <psakiev@sandia.gov>2021-06-07 08:35:26 -0600
committerGitHub <noreply@github.com>2021-06-07 07:35:26 -0700
commit1fed008410238d011676258fbe42bbf2760e005c (patch)
tree173a6c53a3aeea1a0203bc888bcf149ccf5d6fe7 /var
parentb0590bf4e85d9c63ccc3feafe0874e49539c21ed (diff)
downloadspack-1fed008410238d011676258fbe42bbf2760e005c.tar.gz
spack-1fed008410238d011676258fbe42bbf2760e005c.tar.bz2
spack-1fed008410238d011676258fbe42bbf2760e005c.tar.xz
spack-1fed008410238d011676258fbe42bbf2760e005c.zip
Add int64 back for hypre in nalu-wind (#24140)
To concretize the entire exawind environment together we need `hypre` to be built with the same flags for `nalu-wind` and `amr-wind`. @jrood-nrel
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/nalu-wind/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/nalu-wind/package.py b/var/spack/repos/builtin/packages/nalu-wind/package.py
index db66d56f2c..803fde9719 100644
--- a/var/spack/repos/builtin/packages/nalu-wind/package.py
+++ b/var/spack/repos/builtin/packages/nalu-wind/package.py
@@ -57,12 +57,12 @@ class NaluWind(CMakePackage, CudaPackage):
depends_on('trilinos@master,develop ~cuda~wrapper+exodus+tpetra+muelu+belos+ifpack2+amesos2+zoltan+stk+boost~superlu-dist~superlu+hdf5+zlib+pnetcdf+shards~hypre~shared cxxstd=14', when=(sys.platform == 'darwin'))
depends_on('openfast@master,develop +cxx', when='+openfast')
depends_on('tioga@master,develop', when='+tioga')
- depends_on('hypre@develop,2.18.2: +mpi~superlu-dist', when='+hypre')
+ depends_on('hypre@develop,2.18.2: +int64+mpi~superlu-dist', when='+hypre')
depends_on('kokkos-nvcc-wrapper', type='build', when='+cuda')
for _arch in CudaPackage.cuda_arch_values:
depends_on('trilinos@master,develop ~shared+exodus+tpetra+muelu+belos+ifpack2+amesos2+zoltan+stk+boost~superlu-dist~superlu+hdf5+zlib+pnetcdf+shards~hypre+cuda+cuda_rdc+wrapper cxxstd=14 cuda_arch={0}'.format(_arch),
when='+cuda cuda_arch={0}'.format(_arch))
- depends_on('hypre@develop +mpi+cuda~int64~superlu-dist cuda_arch={0}'.format(_arch),
+ depends_on('hypre@develop +mpi+cuda+int64~superlu-dist cuda_arch={0}'.format(_arch),
when='+hypre+cuda cuda_arch={0}'.format(_arch))
depends_on('trilinos-catalyst-ioss-adapter', when='+catalyst')
depends_on('fftw+mpi', when='+fftw')