Visible to Intel only — GUID: GUID-8A97ADED-D77F-4D73-996E-DE85944AF6EE
Visible to Intel only — GUID: GUID-8A97ADED-D77F-4D73-996E-DE85944AF6EE
<span class='option'>_mm256_min_epu8/16/32</span>
Determines the minimum value between two vectors with packed unsigned byte/word/doubleword integers. The corresponding Intel® AVX2 instruction is VPMINUB, VPMINUW, or VPMINUD.
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); |
s1 |
integer source vector used for the operation |
s2 |
integer source vector used for the operation |
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.
Destination vector with result of the compare operation.