_mm512_set1_epi32
Classification
Header File
Instruction
VPBROADCASTD zmm, r32
Synopsis
_mm512_set1_epi32(int a);
Description
Broadcast 32-bit integer "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