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 |
Parent topic: Intrinsics for Compare Operations
Englisch