_mm256_cvtepu8_epi32
Classification
AVX_ALL, Convert, CPUID Test: AVX2
Header File
immintrin.h
Instruction
VPMOVZXBD ymm, xmm
Synopsis
 _mm256_cvtepu8_epi32(__m128i a);
Description
Zero extend packed unsigned 8-bit integers in "a" to packed 32-bit integers, and store the results in "dst".
Operation
FOR j := 0 to 7
	i := 32*j
	k := 8*j
	dst[i+31:i] := ZeroExtend32(a[k+7:k])
ENDFOR
dst[MAX:256] := 0