Tags / Equivalents
_mm_min_epi16() on Intel 64-bit - SSE4.2
Compare packed signed 16-bit integers in a and b, and store packed minimum values in output.
vmin_s16() 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.
_mm512_min_epi16() on Intel 64-bit - AVX512
Compare packed signed 16-bit integers in "a" and "b", and store packed minimum values in "dst".
_m_pminsw() on Intel 64-bit - SSE4.2
Compare packed signed 16-bit integers in a and b, and store packed minimum values in output.
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.
vminq_s16() on Arm 64-bit - NEON
VMIN compares corresponding elements in two vectors, and returns the smaller of each pair.
_mm_min_pi16() on Intel 64-bit - SSE4.2
Compare packed signed 16-bit integers in a and b, and store packed minimum values in output.
_mm256_min_epi16() on Intel 64-bit - AVX2
Compare packed signed 16-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.