_mm512_set4_epi32
Classification
AVX-512, Set, CPUID Test: AVX512F
Header File
immintrin.h
Synopsis
 _mm512_set4_epi32(int d, int c, int b, int a);
Description
Set packed 32-bit integers in "dst" with the repeated 4 element sequence.
Operation
dst[31:0] := a
dst[63:32] := b
dst[95:64] := c
dst[127:96] := d
dst[159:128] := a
dst[191:160] := b
dst[223:192] := c
dst[255:224] := d
dst[287:256] := a
dst[319:288] := b
dst[351:320] := c
dst[383:352] := d
dst[415:384] := a
dst[447:416] := b
dst[479:448] := c
dst[511:480] := d
dst[MAX:512] := 0