diff options
author | Daniel Arndt <arndtd@ornl.gov> | 2021-05-05 17:13:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-05 14:13:16 -0700 |
commit | f9860de2d5cb570379420ceddfb9420229c2e93c (patch) | |
tree | e215773660c9a85acec77a42d8d848c71f9a8d0a /var | |
parent | ab018c2081672d9a412743ce6a7c645ff98177b3 (diff) | |
download | spack-f9860de2d5cb570379420ceddfb9420229c2e93c.tar.gz spack-f9860de2d5cb570379420ceddfb9420229c2e93c.tar.bz2 spack-f9860de2d5cb570379420ceddfb9420229c2e93c.tar.xz spack-f9860de2d5cb570379420ceddfb9420229c2e93c.zip |
Update Kokkos for release 3.4.00 and add SYCL (#23433)
* Update Kokkos for release 3.4.00 and add SYCL
* add conflict if sycl was requested before 3.4
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/kokkos/package.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/kokkos/package.py b/var/spack/repos/builtin/packages/kokkos/package.py index c611bb4807..29bb682a7c 100644 --- a/var/spack/repos/builtin/packages/kokkos/package.py +++ b/var/spack/repos/builtin/packages/kokkos/package.py @@ -12,7 +12,7 @@ class Kokkos(CMakePackage, CudaPackage, ROCmPackage): homepage = "https://github.com/kokkos/kokkos" git = "https://github.com/kokkos/kokkos.git" - url = "https://github.com/kokkos/kokkos/archive/3.3.01.tar.gz" + url = "https://github.com/kokkos/kokkos/archive/3.4.00.tar.gz" test_requires_compiler = True @@ -20,6 +20,7 @@ class Kokkos(CMakePackage, CudaPackage, ROCmPackage): version('master', branch='master') version('develop', branch='develop') + version('3.4.00', sha256='2e4438f9e4767442d8a55e65d000cc9cde92277d415ab4913a96cd3ad901d317') version('3.3.01', sha256='4919b00bb7b6eb80f6c335a32f98ebe262229d82e72d3bae6dd91aaf3d234c37') version('3.2.00', sha256='05e1b4dd1ef383ca56fe577913e1ff31614764e65de6d6f2a163b2bddb60b3e9') version('3.1.01', sha256='ff5024ebe8570887d00246e2793667e0d796b08c77a8227fe271127d36eec9dd') @@ -34,8 +35,10 @@ class Kokkos(CMakePackage, CudaPackage, ROCmPackage): 'pthread': [False, 'Whether to build Pthread backend'], 'serial': [True, 'Whether to build serial backend'], 'rocm': [False, 'Whether to build HIP backend'], + 'sycl': [False, 'Whether to build the SYCL backend'], } conflicts("+rocm", when="@:3.0") + conflicts("+sycl", when="@:3.3") tpls_variants = { 'hpx': [False, 'Whether to enable the HPX library'], |