_mm256_set1_epi32
Classification
Header File
Synopsis
_mm256_set1_epi32(int a);
Description
Broadcast 32-bit integer "a" to all elements of "dst". This intrinsic may generate the "vpbroadcastd".
Operation
FOR j := 0 to 7
i := j*32
dst[i+31:i] := a[31:0]
ENDFOR
dst[MAX:256] := 0