diff options
author | Sebastian Berg <sebastianb@nvidia.com> | 2022-12-18 13:02:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-18 13:02:15 +0100 |
commit | f589407142f37c94f27c6dbe622b764e30a47c35 (patch) | |
tree | 3716d2d9d574a74937e0cbc7ebea867787e567ed /numpy/core/meson.build | |
parent | 1f80ce288829b73b487474a921aa3ae2402d9fa7 (diff) | |
parent | d02fc70cb6ad43093e1c407172c7193957705b5d (diff) | |
download | numpy-f589407142f37c94f27c6dbe622b764e30a47c35.tar.gz |
Merge pull request #22771 from seiko2plus/issue_22461
BUG, SIMD: Fix invalid value encountered in several ufuncs
Diffstat (limited to 'numpy/core/meson.build')
-rw-r--r-- | numpy/core/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/meson.build b/numpy/core/meson.build index 3f937c001..3f149c15c 100644 --- a/numpy/core/meson.build +++ b/numpy/core/meson.build @@ -133,7 +133,7 @@ mandatory_funcs = [ 'floor', 'ceil', 'sqrt', 'log10', 'log', 'exp', 'asin', 'acos', 'atan', 'fmod', 'modf', 'frexp', 'ldexp', 'expm1', 'log1p', 'acosh', 'asinh', 'atanh', - 'rint', 'trunc', 'exp2', + 'rint', 'trunc', 'exp2', 'copysign', 'nextafter', 'strtoll', 'strtoull', 'cbrt', 'log2', 'pow', 'hypot', 'atan2', 'csin', 'csinh', 'ccos', 'ccosh', 'ctan', 'ctanh', @@ -868,9 +868,9 @@ py.extension_module('_simd', src_file.process('src/_simd/_simd.dispatch.c.src'), ], c_args: c_args_common, - #include_directories: ['src/multiarray', 'src/npymath'], - include_directories: ['src/_simd'], + include_directories: ['src/_simd', 'src/npymath'], dependencies: np_core_dep, + link_with: npymath_lib, install: true, subdir: 'numpy/core', ) |