diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-12-05 19:21:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 19:21:08 -0500 |
commit | 65497a4375e66e80339ffc35156a2604221418b0 (patch) | |
tree | 0e01211e1c1d6285f0c0ef63861c0637e125bd9e /numpy/core/setup.py | |
parent | f74b3720ca6148574da40ed96d4712e221ee84bd (diff) | |
parent | 557a752db3aa7cd4f34746a53ee011a33b6a86bc (diff) | |
download | numpy-65497a4375e66e80339ffc35156a2604221418b0.tar.gz |
Merge pull request #22166 from Developer-Ecosystem-Engineering/add_simd_negative
ENH: Add SIMD versions of negative
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 4b61bd855..da5bc64c0 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -1005,6 +1005,7 @@ def configuration(parent_package='',top_path=None): join('src', 'umath', 'loops.h.src'), join('src', 'umath', 'loops_utils.h.src'), join('src', 'umath', 'loops.c.src'), + join('src', 'umath', 'loops_unary.dispatch.c.src'), join('src', 'umath', 'loops_unary_fp.dispatch.c.src'), join('src', 'umath', 'loops_arithm_fp.dispatch.c.src'), join('src', 'umath', 'loops_arithmetic.dispatch.c.src'), |