_mm256_rem_epi64
Classification
SVML, Arithmetic, CPUID Test: AVX
Header File
Synopsis
_mm256_rem_epi64(__m256i a, __m256i b);
Description
Divide packed 64-bit integers in "a" by packed elements in "b", and store the remainders as packed 32-bit integers in "dst".
Operation
FOR j := 0 to 3
i := 64*j
dst[i+63:i] := REMAINDER(a[i+63:i] / b[i+63:i])
ENDFOR
dst[MAX:256] := 0