diff options
author | Pradipta Ghosh <pradghos@in.ibm.com> | 2021-12-09 04:53:53 -0800 |
---|---|---|
committer | Sayed Adel <seiko@imavr.com> | 2021-12-14 03:49:12 +0200 |
commit | c4e0ba88dfdcbad4a8600ca227bb00ab00262bb0 (patch) | |
tree | 39f656e1db77b0279531d70900e4204f9c5527d0 /numpy/distutils/command/build.py | |
parent | aea715bacd7497d30fe168977be430d64588944b (diff) | |
download | numpy-c4e0ba88dfdcbad4a8600ca227bb00ab00262bb0.tar.gz |
Fix lint issues
Diffstat (limited to 'numpy/distutils/command/build.py')
-rw-r--r-- | numpy/distutils/command/build.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/command/build.py b/numpy/distutils/command/build.py index e5c507772..dc1ab3b9b 100644 --- a/numpy/distutils/command/build.py +++ b/numpy/distutils/command/build.py @@ -47,7 +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 NEON ASIMD VX VXE VXE2" def finalize_options(self): build_scripts = self.build_scripts |