MCPcopy Create free account
hub / github.com/numpy/numpy / npyv_minn_f64

Function npyv_minn_f64

numpy/core/src/common/simd/sse/math.h:129–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127 return npyv_select_f32(nn, min, a);
128}
129NPY_FINLINE npyv_f64 npyv_minn_f64(npyv_f64 a, npyv_f64 b)
130{
131 __m128i nn = npyv_notnan_f64(a);
132 __m128d min = _mm_min_pd(a, b);
133 return npyv_select_f64(nn, min, a);
134}
135// Minimum, integer operations
136#ifdef NPY_HAVE_SSE41
137 #define npyv_min_s8 _mm_min_epi8

Callers

nothing calls this directly

Calls 2

npyv_select_f64Function · 0.85
npyv_notnan_f64Function · 0.70

Tested by

no test coverage detected