Tags / Equivalents
vmin_u8() on Arm 64-bit - NEON
Signed Minimum (vector). This instruction compares corresponding elements in the vectors in the two source SIMD&FP registers, places the smaller of each of the two signed integer values into a vector, and writes the vector to the destination SIMD&FP register.
vminq_u8() on Arm 64-bit - NEON
VMIN compares corresponding elements in two vectors, and returns the smaller of each pair.
_mm_min_pu8() on Intel 64-bit - SSE4.2
Compare packed unsigned 8-bit integers in a and b, and store packed minimum values in output.
_mm512_min_epu8() on Intel 64-bit - AVX512
Compare packed unsigned 8-bit integers in "a" and "b", and store packed minimum values in "dst".
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.
_mm_min_epu8() on Intel 64-bit - SSE4.2
Compare packed unsigned 8-bit integers in a and b, and store packed minimum values in output.
_mm256_min_epu8() on Intel 64-bit - AVX2
Compare packed unsigned 8-bit integers in a and b, and store packed minimum values in output.
vec_min() on IBM-Z 64-bit - IBM-Z
Returns a vector containing the minimum value from each set of corresponding elements of the given vectors. The value of each element of the result is the minimum of the values of the corresponding elements of a and b.This function emulates the operation on vector double under ARCH(11). Minimum Arch: Z11.