_mm256_broadcast_i32x4
Classification
AVX-512, Miscellaneous, CPUID Test: AVX512F
Header File
Instruction
VBROADCASTI32X4 ymm, m128
Synopsis
_mm256_broadcast_i32x4(__m128i a);
Description
Broadcast the 4 packed 32-bit integers from "a" to all elements of "dst".
Operation
FOR j := 0 to 7
i := j*32
n := (j % 4)*32
dst[i+31:i] := a[n+31:n]
ENDFOR
dst[MAX:256] := 0