Determines the maximum value between two vectors with packed unsigned byte/word/doubleword integers. The corresponding Intel® AVX2 instruction is VPMAXUB, VPMAXUW, or VPMAXUD.
extern __m256i _mm256_max_epu8(__m256i s1, __m256i s2); |
extern __m256i _mm256_max_epu16(__m256i s1, __m256i s2); |
extern __m256i _mm256_max_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 the second source vector, s2 and the first source vector, s1, and returns the maximum value for each pair of integers to the destination vector.
Destination vector with result of the compare operation.
Copyright © 1996-2011, Intel Corporation. All rights reserved.