summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Cojean <terry.cojean@kit.edu>2023-06-26 14:13:48 +0200
committerGitHub <noreply@github.com>2023-06-26 14:13:48 +0200
commit0314071763b83c33322abbc57ea58f6c24349431 (patch)
treeb10358e56aedcf3bd2cffb38f666071cefd2f645
parent6e13d7d9179e47f0e39fefc55a52ef8ccfcc8105 (diff)
downloadspack-0314071763b83c33322abbc57ea58f6c24349431.tar.gz
spack-0314071763b83c33322abbc57ea58f6c24349431.tar.bz2
spack-0314071763b83c33322abbc57ea58f6c24349431.tar.xz
spack-0314071763b83c33322abbc57ea58f6c24349431.zip
ginkgo: add version 1.6.0 (#38439)
-rw-r--r--var/spack/repos/builtin/packages/ginkgo/package.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/ginkgo/package.py b/var/spack/repos/builtin/packages/ginkgo/package.py
index fa8c8d5f5b..97bd7b0640 100644
--- a/var/spack/repos/builtin/packages/ginkgo/package.py
+++ b/var/spack/repos/builtin/packages/ginkgo/package.py
@@ -24,7 +24,8 @@ class Ginkgo(CMakePackage, CudaPackage, ROCmPackage):
version("develop", branch="develop")
version("master", branch="master")
- version("1.5.0", commit="234594c92b58e2384dfb43c2d08e7f43e2b58e7a", preferred=True) # v1.5.0
+ version("1.6.0", commit="1f1ed46e724334626f016f105213c047e16bc1ae", preferred=True) # v1.6.0
+ version("1.5.0", commit="234594c92b58e2384dfb43c2d08e7f43e2b58e7a") # v1.5.0
version("1.5.0.glu_experimental", branch="glu_experimental")
version("1.4.0", commit="f811917c1def4d0fcd8db3fe5c948ce13409e28e") # v1.4.0
version("1.3.0", commit="4678668c66f634169def81620a85c9a20b7cec78") # v1.3.0
@@ -74,17 +75,15 @@ class Ginkgo(CMakePackage, CudaPackage, ROCmPackage):
conflicts("^rocprim@4.1.0:", when="@:1.3.0")
# Skip smoke tests if compatible hardware isn't found
- patch("1.4.0_skip_invalid_smoke_tests.patch", when="@master")
patch("1.4.0_skip_invalid_smoke_tests.patch", when="@1.4.0")
# Newer DPC++ compilers use the updated SYCL 2020 standard which change
# kernel attribute propagation rules. This doesn't work well with the
# initial Ginkgo oneAPI support.
- patch("1.4.0_dpcpp_use_old_standard.patch", when="+oneapi @master")
patch("1.4.0_dpcpp_use_old_standard.patch", when="+oneapi @1.4.0")
# Add missing include statement
- patch("thrust-count-header.patch", when="+rocm @1.5.0:")
+ patch("thrust-count-header.patch", when="+rocm @1.5.0")
def setup_build_environment(self, env):
spec = self.spec