Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: align test_dispatcher s390x targets with _umath_tests_mtargets #24814

Merged
merged 2 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions numpy/core/src/umath/_umath_tests.dispatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* SSE2 SSE41 AVX2
* VSX VSX2 VSX3
* NEON ASIMD ASIMDHP
* VX VXE
*/
#define PY_SSIZE_T_CLEAN
#include <Python.h>
Expand Down
3 changes: 2 additions & 1 deletion numpy/core/tests/test_cpu_dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ def test_dispatcher():
targets = (
"SSE2", "SSE41", "AVX2",
"VSX", "VSX2", "VSX3",
"NEON", "ASIMD", "ASIMDHP"
"NEON", "ASIMD", "ASIMDHP",
"VX", "VXE"
)
highest_sfx = "" # no suffix for the baseline
all_sfx = []
Expand Down