diff options
author | Sayed Adel <seiko@imavr.com> | 2020-10-18 12:03:17 +0000 |
---|---|---|
committer | Sayed Adel <seiko@imavr.com> | 2020-12-26 16:32:04 +0000 |
commit | b16288698742e7593db61cf9a618e2d03de6b36e (patch) | |
tree | 301ed276b9eca8d18c7ffc9eae2fb0db9c9699e2 /.gitignore | |
parent | 098a3b417dbb3c620e423e29f194585b68882d5e (diff) | |
download | numpy-b16288698742e7593db61cf9a618e2d03de6b36e.tar.gz |
SIMD: Replace raw SIMD of sin/cos with NPYV
The new code improves the performance of non-contiguous memory access
for the output array without any reduction in performance.
For PPC64LE the performance increased by 2-3.0, and 1.5-2.0 on aarch64.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index b0fa037a6..5a5e464cc 100644 --- a/.gitignore +++ b/.gitignore @@ -218,3 +218,4 @@ numpy/core/src/_simd/_simd_inc.h # umath module 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 |