_mm512_broadcastd_epi32
Classification
AVX-512, Swizzle, CPUID Test: AVX512F
Header File
Instruction
VPBROADCASTD zmm, xmm
Synopsis
_mm512_broadcastd_epi32(__m128i a);
Description
Broadcast the low packed 32-bit integer from "a" to all elements of "dst".
Operation
FOR j := 0 to 15
i := j*32
dst[i+31:i] := a[31:0]
ENDFOR
dst[MAX:512] := 0