_mm512_cvtepu16_epi32
Classification
AVX-512, Convert, CPUID Test: AVX512F
Header File
Instruction
VPMOVZXWD zmm, ymm
Synopsis
_mm512_cvtepu16_epi32(__m256i a);
Description
Zero extend packed unsigned 16-bit integers in "a" to packed 32-bit integers, and store the results in "dst".
Operation
FOR j := 0 to 15
i := 32*j
k := 16*j
dst[i+31:i] := ZeroExtend32(a[k+15:k])
ENDFOR
dst[MAX:512] := 0