_mm512_cvtepu8_epi16
Classification
AVX-512, Convert, CPUID Test: AVX512BW
Header File
immintrin.h
Instruction
VPMOVZXBW zmm, ymm
Synopsis
 _mm512_cvtepu8_epi16(__m256i a);
Description
Zero extend packed unsigned 8-bit integers in "a" to packed 16-bit integers, and store the results in "dst".
Operation
FOR j := 0 to 31
	i := j*8
	l := j*16
	dst[l+15:l] := ZeroExtend16(a[i+7:i])
ENDFOR
dst[MAX:512] := 0