diff options
author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2022-01-13 14:53:13 +0100 |
---|---|---|
committer | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2022-01-13 14:53:13 +0100 |
commit | 10dda0f6ed62da7e9460db8fe7fda3b1992ff21e (patch) | |
tree | de319420127a60e424543a0ca24610be53e1aed6 | |
parent | 813a0c11186ded0b5caeb853fd2b22fb9addd511 (diff) | |
download | numpy-10dda0f6ed62da7e9460db8fe7fda3b1992ff21e.tar.gz |
MAINT: fix typo
Introduced in 0d171288.
-rw-r--r-- | numpy/core/src/umath/loops_minmax.dispatch.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/loops_minmax.dispatch.c.src b/numpy/core/src/umath/loops_minmax.dispatch.c.src index dbd158db9..708270016 100644 --- a/numpy/core/src/umath/loops_minmax.dispatch.c.src +++ b/numpy/core/src/umath/loops_minmax.dispatch.c.src @@ -56,7 +56,7 @@ NPY_FINLINE @type@ scalar_@op@_@c_sfx@(@type@ a, @type@ b) { @sse_type@ va = _mm_set_s@isa_sfx@(a); @sse_type@ vb = _mm_set_s@isa_sfx@(b); @sse_type@ rv = _mm_@op@_s@isa_sfx@(va, vb); - // X86 handel second operand + // X86 handle second operand @sse_type@ nn = _mm_cmpord_s@isa_sfx@(va, va); #ifdef NPY_HAVE_SSE41 rv = _mm_blendv_p@isa_sfx@(va, rv, nn); |