summaryrefslogtreecommitdiff
path: root/numpy/core/setup.py
diff options
context:
space:
mode:
authorSayed Adel <seiko@imavr.com>2023-01-01 18:18:02 +0200
committerSayed Adel <seiko@imavr.com>2023-01-29 13:02:39 +0200
commit783661e95a0e92372f2d1969a8c92f0d1e55e101 (patch)
tree0b53cfdd59f17c9f401834f366a5984ff6e558b6 /numpy/core/setup.py
parentc35f97f964a5ba263e5387ae0cc0a4393cb1da43 (diff)
downloadnumpy-783661e95a0e92372f2d1969a8c92f0d1e55e101.tar.gz
ENH, SIMD: Only dispatch AVX2 for arithmetic operations
no performance gain with AVX512 enabled except for absolute
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r--numpy/core/setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py
index 128aed779..c7e28af9c 100644
--- a/numpy/core/setup.py
+++ b/numpy/core/setup.py
@@ -1017,6 +1017,7 @@ def configuration(parent_package='',top_path=None):
join('src', 'umath', 'loops_hyperbolic.dispatch.c.src'),
join('src', 'umath', 'loops_modulo.dispatch.c.src'),
join('src', 'umath', 'loops_comparison.dispatch.c.src'),
+ join('src', 'umath', 'loops_unary_complex.dispatch.c.src'),
join('src', 'umath', 'matmul.h.src'),
join('src', 'umath', 'matmul.c.src'),
join('src', 'umath', 'clip.h'),