Skip to content

Commit ce1adca

Browse files
authored
Merge pull request #24814 from charris/backport-24772
MAINT: align test_dispatcher s390x targets with _umath_tests_mtargets
2 parents df93b11 + 1c21b68 commit ce1adca

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

numpy/core/src/umath/_umath_tests.dispatch.c

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* SSE2 SSE41 AVX2
66
* VSX VSX2 VSX3
77
* NEON ASIMD ASIMDHP
8+
* VX VXE
89
*/
910
#define PY_SSIZE_T_CLEAN
1011
#include <Python.h>

numpy/core/tests/test_cpu_dispatcher.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ def test_dispatcher():
99
targets = (
1010
"SSE2", "SSE41", "AVX2",
1111
"VSX", "VSX2", "VSX3",
12-
"NEON", "ASIMD", "ASIMDHP"
12+
"NEON", "ASIMD", "ASIMDHP",
13+
"VX", "VXE"
1314
)
1415
highest_sfx = "" # no suffix for the baseline
1516
all_sfx = []

0 commit comments

Comments
 (0)