diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-04-20 20:20:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-20 20:20:46 +0300 |
commit | cd2e52ce9dc54b0199beba25bd5e02ce54d60963 (patch) | |
tree | 69654e1b8491320bfad736202ea161273cfb3972 /numpy/distutils/command/config.py | |
parent | 31e71d7ce8d447cb74b9fb83875361cf7dba4579 (diff) | |
parent | d3125fa94893af10597f3e0b07613c719940a543 (diff) | |
download | numpy-cd2e52ce9dc54b0199beba25bd5e02ce54d60963.tar.gz |
Merge pull request #13134 from r-devulap/logexp-simd
ENH: Use AVX for float32 implementation of np.exp & np.log
Diffstat (limited to 'numpy/distutils/command/config.py')
-rw-r--r-- | numpy/distutils/command/config.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/distutils/command/config.py b/numpy/distutils/command/config.py index d9b1e8488..74d6900dc 100644 --- a/numpy/distutils/command/config.py +++ b/numpy/distutils/command/config.py @@ -18,6 +18,7 @@ import distutils from numpy.distutils.exec_command import filepath_from_subprocess_output from numpy.distutils.mingw32ccompiler import generate_manifest from numpy.distutils.command.autodist import (check_gcc_function_attribute, + check_gcc_function_attribute_with_intrinsics, check_gcc_variable_attribute, check_inline, check_restrict, @@ -424,6 +425,11 @@ int main (void) def check_gcc_function_attribute(self, attribute, name): return check_gcc_function_attribute(self, attribute, name) + def check_gcc_function_attribute_with_intrinsics(self, attribute, name, + code, include): + return check_gcc_function_attribute_with_intrinsics(self, attribute, + name, code, include) + def check_gcc_variable_attribute(self, attribute): return check_gcc_variable_attribute(self, attribute) |