diff options
author | Cory Bloor <Cordell.Bloor@amd.com> | 2023-01-30 08:08:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-30 16:08:36 +0100 |
commit | 4f6ef3b698cd01fec9fcba01e38b9394fe252e83 (patch) | |
tree | 5db9a62bfd96a0ff2f082353e4319994c1a4f73f | |
parent | 2dc020af3151e5c0e3231cc9b12d2f54d5ea7ba6 (diff) | |
download | spack-4f6ef3b698cd01fec9fcba01e38b9394fe252e83.tar.gz spack-4f6ef3b698cd01fec9fcba01e38b9394fe252e83.tar.bz2 spack-4f6ef3b698cd01fec9fcba01e38b9394fe252e83.tar.xz spack-4f6ef3b698cd01fec9fcba01e38b9394fe252e83.zip |
rocblas: remove unnecessary conflicts (#35232)
The gfx906:xnack- and gfx908:xnack- targets were introduced in ROCm 4.1
and replaced gfx906 and gfx908 as default build targets, but the library
can still be built for gfx906 and gfx908 if requested.
-rw-r--r-- | var/spack/repos/builtin/packages/rocblas/package.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/rocblas/package.py b/var/spack/repos/builtin/packages/rocblas/package.py index f6b3e35d0e..0993730790 100644 --- a/var/spack/repos/builtin/packages/rocblas/package.py +++ b/var/spack/repos/builtin/packages/rocblas/package.py @@ -114,8 +114,6 @@ class Rocblas(CMakePackage): # gfx906, gfx908,gfx803,gfx900 are valid for @:4.0.0 # gfx803,gfx900,gfx:xnack-,gfx908:xnack- are valid gpus for @4.1.0:4.2.0 # gfx803 till gfx1030 are valid gpus for @4.3.0: - conflicts("amdgpu_target=gfx906", when="@4.0.1:") - conflicts("amdgpu_target=gfx908", when="@4.0.1:") conflicts("amdgpu_target=gfx906:xnack-", when="@:4.0.0") conflicts("amdgpu_target=gfx908:xnack-", when="@:4.0.0") conflicts("amdgpu_target=gfx90a:xnack+", when="@:4.2.1") |