summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorSayed Adel <seiko@imavr.com>2021-01-07 11:22:42 +0200
committerGitHub <noreply@github.com>2021-01-07 11:22:42 +0200
commit73fe877ff967f279d470b81ad447b9f3056c1335 (patch)
tree0a9ab52f5ad95284dfb2a779cef65373bcb2a9d9 /.gitignore
parent5363cfa7d07641e84fbb5f21a217018c9b55b2fa (diff)
downloadnumpy-73fe877ff967f279d470b81ad447b9f3056c1335.tar.gz
ENH, SIMD: Ditching the old CPU dispatcher(Exp & Log) (#18101)
The second patch in a series of pull-requests aims to facilitate the migration process to our new SIMD interface(NPYV). It is basically a process that focuses on getting rid of the main umath SIMD source `simd.inc`, which contains almost all SIMD kernels, by splitting it into several dispatch-able sources without changing the base code, which facilitates the review process during the move to NPYV(universal intrinsics). In this patch, we have moved the the following raw SIMD loops to the new dispatcher: - FLOAT_exp, DOUBLE_exp - FLOAT_log, DOUBLE_log - FLOAT_frexp, DOUBLE_frexp - FLOAT_ldexp, DOUBLE_ldexp
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index b1a8db5c3..05df19335 100644
--- a/.gitignore
+++ b/.gitignore
@@ -216,3 +216,4 @@ numpy/core/src/_simd/_simd_inc.h
numpy/core/src/umath/loops_unary_fp.dispatch.c
numpy/core/src/umath/loops_arithm_fp.dispatch.c
numpy/core/src/umath/loops_trigonometric.dispatch.c
+numpy/core/src/umath/loops_exponent_log.dispatch.c