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