diff options
author | Paolo <142514942+paolotricerri@users.noreply.github.com> | 2024-05-15 14:22:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-15 07:22:47 -0600 |
commit | 6c65977e0d6b8fcb473e0c56c72260ad52de1830 (patch) | |
tree | 027f90d387ef7b35aa68369e1a8537d674b6e787 | |
parent | 1b5d786cf5fa2da5525f4b8f2863881bbb7c93c8 (diff) | |
download | spack-6c65977e0d6b8fcb473e0c56c72260ad52de1830.tar.gz spack-6c65977e0d6b8fcb473e0c56c72260ad52de1830.tar.bz2 spack-6c65977e0d6b8fcb473e0c56c72260ad52de1830.tar.xz spack-6c65977e0d6b8fcb473e0c56c72260ad52de1830.zip |
Fix gromacs installation with SVE. Issue 44062 (#44183)
* Fix gromacs installation with SVE. Issue 44062
* [@spackbot] updating style on behalf of paolotricerri
* Remove `neoverse_n2` target
We have removed the neoverse_n2 target as its detection is more involved
compared to neoverse_v*.
-rw-r--r-- | var/spack/repos/builtin/packages/gromacs/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/gromacs/package.py b/var/spack/repos/builtin/packages/gromacs/package.py index bea14550ad..0c1f000a7c 100644 --- a/var/spack/repos/builtin/packages/gromacs/package.py +++ b/var/spack/repos/builtin/packages/gromacs/package.py @@ -163,7 +163,7 @@ class Gromacs(CMakePackage, CudaPackage): "sve", default=True, description="Enable SVE on aarch64 if available", - when="target=neoverse_v1", + when="target=neoverse_v1:,neoverse_v2:", ) variant( "sve", default=True, description="Enable SVE on aarch64 if available", when="target=a64fx" |