_mm256_cvtepu16_epi64
Classification
Header File
Instruction
VPMOVZXWQ ymm, xmm
Synopsis
_mm256_cvtepu16_epi64(__m128i a);
Description
Zero extend packed unsigned 16-bit integers in "a" to packed 64-bit integers, and store the results in "dst".
Operation
FOR j:= 0 to 3
i := 64*j
k := 16*j
dst[i+63:i] := ZeroExtend64(a[k+15:k])
ENDFOR
dst[MAX:256] := 0