diff options
| author | Matti Picus <matti.picus@gmail.com> | 2022-11-27 17:58:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-27 17:58:02 +0200 |
| commit | 843be7486e08ae5badc21757840dfa6f2915efe7 (patch) | |
| tree | 601afe7058be629f91cc1ef742af0180aeff007e /numpy | |
| parent | 2f226baeb9d957639301431ddbba3d682d6a027d (diff) | |
| parent | def902e9ae66d417096510b4da09404acf4ba1f5 (diff) | |
| download | numpy-843be7486e08ae5badc21757840dfa6f2915efe7.tar.gz | |
Merge pull request #22678 from eltociear/patch-5
MAINT: fix typo in loops_unary_fp.dispatch.c.src
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; |
