_mm512_div_epu16
Classification
SVML, Arithmetic, CPUID Test: AVX512F
Header File
Synopsis
_mm512_div_epu16(__m512i a, __m512i b);
Description
Divide packed unsigned 16-bit integers in "a" by packed elements in "b", and store the truncated results in "dst".
Operation
FOR j := 0 to 31
i := 16*j
IF b[i+15:i] == 0
#DE
FI
dst[i+15:i] := Truncate16(a[i+15:i] / b[i+15:i])
ENDFOR
dst[MAX:512] := 0