diff options
author | eugeneswalker <38933153+eugeneswalker@users.noreply.github.com> | 2021-05-03 06:10:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 15:10:48 +0200 |
commit | d0e3c28f348292e55b0f4d19078fca7e493137b0 (patch) | |
tree | 5c65f85ba0c73e178fda10465bdc54d1e85ef32c /var | |
parent | d3d3b9761663bd82f10105c4512db55b82175838 (diff) | |
download | spack-d0e3c28f348292e55b0f4d19078fca7e493137b0.tar.gz spack-d0e3c28f348292e55b0f4d19078fca7e493137b0.tar.bz2 spack-d0e3c28f348292e55b0f4d19078fca7e493137b0.tar.xz spack-d0e3c28f348292e55b0f4d19078fca7e493137b0.zip |
arborx: kokkos hip backend is actually now called rocm (#23390)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/arborx/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/arborx/package.py b/var/spack/repos/builtin/packages/arborx/package.py index e030cbcd54..a5f42172d5 100644 --- a/var/spack/repos/builtin/packages/arborx/package.py +++ b/var/spack/repos/builtin/packages/arborx/package.py @@ -26,7 +26,7 @@ class Arborx(CMakePackage): 'serial': (True, "enable Serial backend (default)"), 'cuda': (False, "enable Cuda backend"), 'openmp': (False, "enable OpenMP backend"), - 'hip': (False, "enable HIP backend") + 'rocm': (False, "enable HIP backend") } variant('mpi', default=True, description='enable MPI') |