diff options
author | Pradipta Ghosh <pradghos@in.ibm.com> | 2021-12-09 03:16:36 -0800 |
---|---|---|
committer | Sayed Adel <seiko@imavr.com> | 2021-12-14 03:49:12 +0200 |
commit | aea715bacd7497d30fe168977be430d64588944b (patch) | |
tree | d5eca36537c47d26edb5c0c5cc440459db103f39 /numpy/distutils/command/build.py | |
parent | 43c113dd7aa36ef833315035858ea98a7b4732c5 (diff) | |
download | numpy-aea715bacd7497d30fe168977be430d64588944b.tar.gz |
Extending CPU feature detection framework to support IBM Z SIMD
We would like to extend CPU feature detection infrastructure
for IBM Z CPU features. Eventually It will help to add and
enable Z specific SIMD builtins and instructions.
As part of the PR, we have extended ccompiler_opt.py,
npy_cpu_features.c.src, npy_cpu_features.h, other files for
Z CPU feature detection and added test files for VX/VXE/VXE2
in distutils/checks.
Diffstat (limited to 'numpy/distutils/command/build.py')
-rw-r--r-- | numpy/distutils/command/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/build.py b/numpy/distutils/command/build.py index a4fda537d..e5c507772 100644 --- a/numpy/distutils/command/build.py +++ b/numpy/distutils/command/build.py @@ -47,7 +47,7 @@ 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" + self.simd_test = "BASELINE SSE2 SSE42 XOP FMA4 (FMA3 AVX2) AVX512F AVX512_SKX VSX VSX2 VSX3 NEON ASIMD VX VXE VXE2" def finalize_options(self): build_scripts = self.build_scripts |