_mm512_rem_epu8
Classification
SVML, Arithmetic, CPUID Test: AVX512F
Header File
Synopsis
_mm512_rem_epu8(__m512i a, __m512i b);
Description
Divide packed unsigned 8-bit integers in "a" by packed elements in "b", and store the remainders as packed unsigned 32-bit integers in "dst".
Operation
FOR j := 0 to 63
i := 8*j
dst[i+7:i] := REMAINDER(a[i+7:i] / b[i+7:i])
ENDFOR
dst[MAX:512] := 0