diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-01-18 19:11:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 19:11:41 +0200 |
commit | f9c4596e54a3810c5a398438f914091777a1b73b (patch) | |
tree | 268380edd49632f4f341dcf146816b030b44b94b /numpy/distutils/command/build.py | |
parent | 72396eace8d20f48716900886ab2531b249f42ae (diff) | |
parent | 3784cac6f79b1a2f5828957173cac81bbc483ba3 (diff) | |
download | numpy-f9c4596e54a3810c5a398438f914091777a1b73b.tar.gz |
Merge pull request #20821 from rafaelcfsousa/p10_enablement
ENH: Add CPU feature detection for POWER10 (VSX4)
Diffstat (limited to 'numpy/distutils/command/build.py')
-rw-r--r-- | numpy/distutils/command/build.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/command/build.py b/numpy/distutils/command/build.py index dc1ab3b9b..80830d559 100644 --- a/numpy/distutils/command/build.py +++ b/numpy/distutils/command/build.py @@ -47,8 +47,8 @@ class build(old_build): - not part of dispatch-able features(--cpu-dispatch) - not supported by compiler or platform """ - self.simd_test = "BASELINE SSE2 SSE42 XOP FMA4 (FMA3 AVX2) AVX512F" \ - " AVX512_SKX VSX VSX2 VSX3 NEON ASIMD VX VXE VXE2" + self.simd_test = "BASELINE SSE2 SSE42 XOP FMA4 (FMA3 AVX2) AVX512F " \ + "AVX512_SKX VSX VSX2 VSX3 VSX4 NEON ASIMD VX VXE VXE2" def finalize_options(self): build_scripts = self.build_scripts |