summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuc Berger <lberge@sandia.gov>2023-06-27 09:33:29 -0600
committerGitHub <noreply@github.com>2023-06-27 08:33:29 -0700
commit41582f76bd8c6f0d72ef1924e1a4b349022c76e6 (patch)
tree057ea3bdb255282bff6b54030c4aa9bc0cd66195
parent97972d300a81d424cfb9c5cf3f7b0933cc15f7dc (diff)
downloadspack-41582f76bd8c6f0d72ef1924e1a4b349022c76e6.tar.gz
spack-41582f76bd8c6f0d72ef1924e1a4b349022c76e6.tar.bz2
spack-41582f76bd8c6f0d72ef1924e1a4b349022c76e6.tar.xz
spack-41582f76bd8c6f0d72ef1924e1a4b349022c76e6.zip
Kokkos Kernels: adding release 3.7.1 and 4.0.0 (#36655)
Co-authored-by: eugeneswalker <38933153+eugeneswalker@users.noreply.github.com>
-rw-r--r--share/spack/gitlab/cloud_pipelines/stacks/e4s-power/spack.yaml2
-rw-r--r--share/spack/gitlab/cloud_pipelines/stacks/e4s/spack.yaml2
-rw-r--r--var/spack/repos/builtin/packages/kokkos-kernels/package.py6
3 files changed, 7 insertions, 3 deletions
diff --git a/share/spack/gitlab/cloud_pipelines/stacks/e4s-power/spack.yaml b/share/spack/gitlab/cloud_pipelines/stacks/e4s-power/spack.yaml
index d3a70d9e52..a6e33c48b1 100644
--- a/share/spack/gitlab/cloud_pipelines/stacks/e4s-power/spack.yaml
+++ b/share/spack/gitlab/cloud_pipelines/stacks/e4s-power/spack.yaml
@@ -161,7 +161,7 @@ spack:
- hpx max_cpu_count=512 +cuda
- hypre +cuda
- kokkos +wrapper +cuda
- - kokkos-kernels +cuda ^kokkos +wrapper +cuda
+ - kokkos-kernels +cuda ^kokkos +wrapper +cuda +cuda_lambda
- magma +cuda
- mfem +cuda
- mgard +serial +openmp +timing +unstructured +cuda
diff --git a/share/spack/gitlab/cloud_pipelines/stacks/e4s/spack.yaml b/share/spack/gitlab/cloud_pipelines/stacks/e4s/spack.yaml
index 01a9a51a18..1796e2a0da 100644
--- a/share/spack/gitlab/cloud_pipelines/stacks/e4s/spack.yaml
+++ b/share/spack/gitlab/cloud_pipelines/stacks/e4s/spack.yaml
@@ -173,7 +173,7 @@ spack:
- hpx max_cpu_count=512 +cuda
- hypre +cuda
- kokkos +wrapper +cuda
- - kokkos-kernels +cuda ^kokkos +wrapper +cuda
+ - kokkos-kernels +cuda ^kokkos +wrapper +cuda +cuda_lambda
- magma +cuda
- mfem +cuda
- mgard +serial +openmp +timing +unstructured +cuda
diff --git a/var/spack/repos/builtin/packages/kokkos-kernels/package.py b/var/spack/repos/builtin/packages/kokkos-kernels/package.py
index dd799bae02..18547fb649 100644
--- a/var/spack/repos/builtin/packages/kokkos-kernels/package.py
+++ b/var/spack/repos/builtin/packages/kokkos-kernels/package.py
@@ -11,7 +11,7 @@ class KokkosKernels(CMakePackage, CudaPackage):
homepage = "https://github.com/kokkos/kokkos-kernels"
git = "https://github.com/kokkos/kokkos-kernels.git"
- url = "https://github.com/kokkos/kokkos-kernels/archive/3.6.00.tar.gz"
+ url = "https://github.com/kokkos/kokkos-kernels/archive/4.0.00.tar.gz"
tags = ["e4s"]
@@ -23,6 +23,8 @@ class KokkosKernels(CMakePackage, CudaPackage):
# openssl sha256 kokkos-kernels-x.y.z.tar.gz
version("develop", branch="develop")
version("master", branch="master")
+ version("4.0.00", sha256="750079d0be1282d18ecd280e130ca303044ac399f1e5864488284b92f5ce0a86")
+ version("3.7.01", sha256="b2060f5894bdaf7f7d4793b90444fac260460cfa80595afcbcb955518864b446")
version("3.7.00", sha256="51bc6db3995392065656848e2b152cfd1c3a95a951ab18a3934278113d59f32b")
version("3.6.01", sha256="f000b156c8c0b80e85d38587907c11d9479aaf362408b812effeda5e22b24d0d")
version("3.6.00", sha256="2753643fd643b9eed9f7d370e0ff5fa957211d08a91aa75398e31cbc9e5eb0a5")
@@ -39,6 +41,8 @@ class KokkosKernels(CMakePackage, CudaPackage):
depends_on("kokkos")
depends_on("kokkos@master", when="@master")
depends_on("kokkos@develop", when="@develop")
+ depends_on("kokkos@4.0.00", when="@4.0.00")
+ depends_on("kokkos@3.7.01", when="@3.7.01")
depends_on("kokkos@3.7.00", when="@3.7.00")
depends_on("kokkos@3.6.01", when="@3.6.01")
depends_on("kokkos@3.6.00", when="@3.6.00")