_mm_irem_epi32
Classification
SVML, Arithmetic, CPUID Test: SSE
Header File
immintrin.h
Synopsis
 _mm_irem_epi32(__m128i a, __m128i b);
Description
Divide packed 32-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 := 32*j
	dst[i+31:i] := REMAINDER(a[i+31:i] / b[i+31:i])
ENDFOR
dst[MAX:128] := 0