diff options
author | Rafael Cardoso Fernandes Sousa <rafaelcfsousa@ibm.com> | 2022-01-17 22:03:54 -0600 |
---|---|---|
committer | Rafael Cardoso Fernandes Sousa <rafaelcfsousa@ibm.com> | 2022-01-17 22:03:54 -0600 |
commit | 3784cac6f79b1a2f5828957173cac81bbc483ba3 (patch) | |
tree | ff313daa6f2bc17659d5ad7e05a13ccf52fba9fa /numpy/distutils/tests | |
parent | a8ecb7d8dd66e7bfe8f8d8a379025b17a894dea4 (diff) | |
download | numpy-3784cac6f79b1a2f5828957173cac81bbc483ba3.tar.gz |
TST: Add CPU dispatch/baseline tests for VSX4
Diffstat (limited to 'numpy/distutils/tests')
-rw-r--r-- | numpy/distutils/tests/test_ccompiler_opt.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/distutils/tests/test_ccompiler_opt.py b/numpy/distutils/tests/test_ccompiler_opt.py index 1f2408dc1..1ca8bc09b 100644 --- a/numpy/distutils/tests/test_ccompiler_opt.py +++ b/numpy/distutils/tests/test_ccompiler_opt.py @@ -544,13 +544,13 @@ class _Test_CCompilerOpt: """ /*@targets sse sse2 sse41 avx avx2 avx512f - vsx vsx2 vsx3 + vsx vsx2 vsx3 vsx4 neon neon_fp16 asimdhp asimddp vx vxe vxe2 */ """, baseline="avx vsx2 asimd vx vxe", - x86="avx512f avx2", armhf="asimddp asimdhp", ppc64="vsx3", + x86="avx512f avx2", armhf="asimddp asimdhp", ppc64="vsx4 vsx3", s390x="vxe2" ) # test skipping non-dispatch features @@ -558,7 +558,7 @@ class _Test_CCompilerOpt: """ /*@targets sse41 avx avx2 avx512f - vsx2 vsx3 + vsx2 vsx3 vsx4 asimd asimdhp asimddp vx vxe vxe2 */ @@ -571,13 +571,13 @@ class _Test_CCompilerOpt: """ /*@targets sse2 sse41 avx2 avx512f - vsx2 vsx3 + vsx2 vsx3 vsx4 neon asimdhp asimddp vx vxe vxe2 */ """, baseline="", - trap_files=".*(avx2|avx512f|vsx3|asimddp|vxe2).c", + trap_files=".*(avx2|avx512f|vsx3|vsx4|asimddp|vxe2).c", x86="sse41 sse2", ppc64="vsx2", armhf="asimdhp neon", s390x="vxe vx" ) |