diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2022-11-27 01:57:35 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 01:57:35 +0900 |
commit | def902e9ae66d417096510b4da09404acf4ba1f5 (patch) | |
tree | 35e2565ee4d96179822d8abb4e995fc791bc1818 /numpy | |
parent | d4b2d4f80060285ac085ea874aceaf9fa1bfb757 (diff) | |
download | numpy-def902e9ae66d417096510b4da09404acf4ba1f5.tar.gz |
MAINT: fix typo in loops_unary_fp.dispatch.c.src
precsion -> precision
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/src/umath/loops_unary_fp.dispatch.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/loops_unary_fp.dispatch.c.src b/numpy/core/src/umath/loops_unary_fp.dispatch.c.src index 0ac39a9b1..c4e7b8929 100644 --- a/numpy/core/src/umath/loops_unary_fp.dispatch.c.src +++ b/numpy/core/src/umath/loops_unary_fp.dispatch.c.src @@ -301,7 +301,7 @@ no_unroll: #endif // @VCHK@ for (; len > 0; --len, src += src_step, dst += dst_step) { #if @VCHK@ - // to guarantee the same precsion and fp/domain errors for both scalars and vectors + // to guarantee the same precision and fp/domain errors for both scalars and vectors simd_@TYPE@_@kind@_CONTIG_CONTIG(src, 0, dst, 0, 1); #else const npyv_lanetype_@sfx@ src0 = *(npyv_lanetype_@sfx@*)src; |