summaryrefslogtreecommitdiff
path: root/numpy/core/setup.py
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-02-05 08:00:51 +0200
committerGitHub <noreply@github.com>2020-02-05 08:00:51 +0200
commitfed1fb49bc50fd2a44238b8250d13314a127ddcc (patch)
tree2765600c6e8cd4de41cf1af43cebcce38c493660 /numpy/core/setup.py
parentb69cf68a24cffea0a884a102da1797755de8f022 (diff)
parent64f7074d243f72e33bfc74bdbc9fec1d85b117a1 (diff)
downloadnumpy-fed1fb49bc50fd2a44238b8250d13314a127ddcc.tar.gz
Merge pull request #13421 from seiko2plus/core_improve_infa_runtime
ENH: improve runtime detection of CPU features
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r--numpy/core/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py
index 66c1b782e..e15cbf7c2 100644
--- a/numpy/core/setup.py
+++ b/numpy/core/setup.py
@@ -745,6 +745,7 @@ def configuration(parent_package='',top_path=None):
join('src', 'common', 'ucsnarrow.c'),
join('src', 'common', 'ufunc_override.c'),
join('src', 'common', 'numpyos.c'),
+ join('src', 'common', 'npy_cpu_features.c.src'),
]
if os.environ.get('NPY_USE_BLAS_ILP64', "0") != "0":
@@ -898,7 +899,6 @@ def configuration(parent_package='',top_path=None):
join('src', 'umath', 'clip.c.src'),
join('src', 'umath', 'ufunc_object.c'),
join('src', 'umath', 'extobj.c'),
- join('src', 'umath', 'cpuid.c'),
join('src', 'umath', 'scalarmath.c.src'),
join('src', 'umath', 'ufunc_type_resolution.c'),
join('src', 'umath', 'override.c'),