Visible to Intel only — GUID: GUID-3A9566F6-8539-4EAA-9912-EDD0DE173EC0
Visible to Intel only — GUID: GUID-3A9566F6-8539-4EAA-9912-EDD0DE173EC0
_mm256_avg_epu8/16
Computes the average of unsigned 8/16-bit integer data elements of two vectors. The corresponding Intel® AVX2 instruction is VPAVGB or VPAVGW.
Syntax
extern __m256i _mm256_avg_epu8(__m256i s1, __m256i s2); |
extern __m256i _mm256_avg_epu16(__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 average of the packed unsigned integers from source vector s2 and source vector s1 and stores the results in the destination vector. For each corresponding pair of data elements in the first and second vectors, the elements are added together, a 1 is added to the temporary sum, and that result is shifted right by one bit position.
Returns
Result of the operation.