_mm256_cvtepu8_epi16
Classification
AVX_ALL, Convert, CPUID Test: AVX2
Header File
immintrin.h
Instruction
VPMOVZXBW ymm, xmm
Synopsis
 _mm256_cvtepu8_epi16(__m128i 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 15
	i := j*8
	l := j*16
	dst[l+15:l] := ZeroExtend16(a[i+7:i])
ENDFOR
dst[MAX:256] := 0