diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-09-28 11:10:52 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-28 11:10:52 +0300 |
commit | 2dfd21e22eb0f62b68b208b5ab735e56e9c095c9 (patch) | |
tree | a9946223d6a03945ad6defb3dd2d813cc3e22bc2 /numpy/core/setup.py | |
parent | 4f2bf689cdadaebfdb804674630e4e9eace91cd4 (diff) | |
parent | 7dfcd39f53e0fad9aa083f64112caa26c4406d7f (diff) | |
download | numpy-2dfd21e22eb0f62b68b208b5ab735e56e9c095c9.tar.gz |
Merge pull request #21955 from r-devulap/fp16-umath
ENH: Vectorize FP16 umath functions using AVX512
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index fc09dba8b..3a239a70e 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -1077,7 +1077,6 @@ def configuration(parent_package='',top_path=None): # actually the other way around, better performance and # after all maintainable code. svml_filter = ( - 'svml_z0_tanh_d_la.s', 'svml_z0_tanh_s_la.s' ) if can_link_svml() and check_svml_submodule(svml_path): svml_objs = glob.glob(svml_path + '/**/*.s', recursive=True) |