summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/fftw/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/fftw/package.py b/var/spack/repos/builtin/packages/fftw/package.py
index 845e714bc7..890002b131 100644
--- a/var/spack/repos/builtin/packages/fftw/package.py
+++ b/var/spack/repos/builtin/packages/fftw/package.py
@@ -122,9 +122,9 @@ class FftwBase(AutotoolsPackage):
# Specific SIMD support.
# all precisions
simd_features = ['sse2', 'avx', 'avx2', 'avx512', 'avx-128-fma',
- 'kcvi', 'vsx', 'neon']
+ 'kcvi', 'vsx']
# float only
- float_simd_features = ['altivec', 'sse']
+ float_simd_features = ['altivec', 'sse', 'neon']
# Workaround PGI compiler bug when avx2 is enabled
if spec.satisfies('%pgi') and 'avx2' in simd_features: