_mm512_broadcast_i64x4
Classification
AVX-512, Swizzle, CPUID Test: AVX512F
Header File
Instruction
VBROADCASTI64X4 zmm, m256
Synopsis
_mm512_broadcast_i64x4(__m256i a);
Description
Broadcast the 4 packed 64-bit integers from "a" to all elements of "dst".
Operation
FOR j := 0 to 7
i := j*64
n := (j % 4)*64
dst[i+63:i] := a[n+63:n]
ENDFOR
dst[MAX:512] := 0