summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeveloper-Ecosystem-Engineering <65677710+Developer-Ecosystem-Engineering@users.noreply.github.com>2022-12-06 17:57:19 -0800
committerDeveloper-Ecosystem-Engineering <65677710+Developer-Ecosystem-Engineering@users.noreply.github.com>2023-01-04 02:19:32 -0800
commit2a258c3b47eec9521120ebbafca0226ecadc5d0d (patch)
tree16bcbd4ec3e9f89165c9e7bf58990dc03483f573
parentd6ae74d8867c4be940a0e1b3ae8bb7837e4fb8dc (diff)
downloadnumpy-2a258c3b47eec9521120ebbafca0226ecadc5d0d.tar.gz
Update .gitignore and meson.build for loops_unary_fp_le.dispatch.c.src
-rw-r--r--.gitignore1
-rw-r--r--numpy/core/meson.build1
2 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index f28a44f18..d00441edc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -216,6 +216,7 @@ numpy/core/src/_simd/_simd_inc.h
# umath module
numpy/core/src/umath/loops_unary.dispatch.c
numpy/core/src/umath/loops_unary_fp.dispatch.c
+numpy/core/src/umath/loops_unary_fp_le.dispatch.c
numpy/core/src/umath/loops_arithm_fp.dispatch.c
numpy/core/src/umath/loops_arithmetic.dispatch.c
numpy/core/src/umath/loops_logical.dispatch.c
diff --git a/numpy/core/meson.build b/numpy/core/meson.build
index d6f9c8ff4..b278d438f 100644
--- a/numpy/core/meson.build
+++ b/numpy/core/meson.build
@@ -758,6 +758,7 @@ src_umath = [
src_file.process('src/umath/loops_umath_fp.dispatch.c.src'),
src_file.process('src/umath/loops_unary.dispatch.c.src'),
src_file.process('src/umath/loops_unary_fp.dispatch.c.src'),
+ src_file.process('src/umath/loops_unary_fp_le.dispatch.c.src'),
src_file.process('src/umath/matmul.c.src'),
src_file.process('src/umath/matmul.h.src'),
src_file.process('src/umath/simd.inc.src'),