_mm256_broadcastd_epi32
Classification
AVX_ALL, Swizzle, CPUID Test: AVX2
Header File
immintrin.h
Instruction
VPBROADCASTD ymm, xmm
Synopsis
 _mm256_broadcastd_epi32(__m128i a);
Description
Broadcast the low packed 32-bit integer from "a" to all elements of "dst".
Operation
FOR j := 0 to 7
	i := j*32
	dst[i+31:i] := a[31:0]
ENDFOR
dst[MAX:256] := 0