Visible to Intel only — GUID: GUID-8A97ADED-D77F-4D73-996E-DE85944AF6EE
Visible to Intel only — GUID: GUID-8A97ADED-D77F-4D73-996E-DE85944AF6EE
_mm256_min_epu8/16/32
Determines the minimum value between two vectors with packed unsigned byte/word/doubleword integers. The corresponding Intel® AVX2 instruction is VPMINUB, VPMINUW, or VPMINUD.
Syntax
extern __m256i _mm256_min_epu8(__m256i s1, __m256i s2); |
extern __m256i _mm256_min_epu16(__m256i s1, __m256i s2); |
extern __m256i _mm256_min_epu32(__m256i s1, __m256i s2); |
Arguments
s1 |
integer source vector used for the operation |
s2 |
integer source vector used for the operation |
Description
Performs a SIMD compare of the packed unsigned byte, word, or doubleword integers in source vectors s1 and s2 and returns the minimum value for each pair of integers to the destination vector.
Returns
Destination vector with result of the compare operation.