Tags / Equivalents
_mm_min_ps() on Intel 64-bit - SSE4.2
Purpose: Compare packed single-precision (32-bit) floating-point elements in a and b, and store packed minimum values in output.
Output does not follow the IEEE Standard for Floating-Point Arithmetic (IEEE 754) minimum value when inputs are NaN or signed-zero values.
Result value:
Endian considerations: None.
vminq_f32() on Arm 64-bit - NEON
VMIN compares corresponding elements in two vectors, and returns the smaller of each pair.
vminnm_f32() on Arm 64-bit - NEON
vminnmq_f32() on Arm 64-bit - NEON
_mm512_min_ps() on Intel 64-bit - AVX512
_mm256_min_ps() on Intel 64-bit - AVX2
Compare packed single-precision (32-bit) floating-point elements in a and b, and store packed minimum values in output.
output does not follow the IEEE Standard for Floating-Point Arithmetic (IEEE 754) minimum value when inputs are NaN or signed-zero values.
vec_min() on IBM Power 9 64-bit - VSX
Purpose: Returns a vector containing the minimum value from each set of corresponding elements of the source vectors.
Result value: The value of each element of output is the minimum of the values of the corresponding elements of a and b.
Endian considerations: None.
vec_min() on IBM-Z 64-bit - IBM-Z
vmin_f32() on Arm 64-bit - NEON