_mm_min_pd
Microsoft Specific
Computes the minima of the two double-precision, floating-point values of a
and b
.
__m128d _mm_min_pd(__m128d a, __m128d b);
MINPD
Return Value
r0 := min(a0, b0)
r1 := min(a1, b1)
Requirements
Header: emmintrin.h
END Microsoft Specific