Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Microsoft Specific
Computes the pairwise maxima of the 16 unsigned 8-bit integers from a and the 16 unsigned 8-bit integers from b.
__m128i _mm_max_epu8 (__m128i a, __m128i b);
PMAXUB
Return Value
r0 := max(a0, b0)
r1 := max(a1, b1)
...
r15 := max(a15, b15)
Requirements
Header: emmintrin.h
END Microsoft Specific