_mm512_broadcast_f32x2
Classification
AVX-512, Miscellaneous, CPUID Test: AVX512DQ
Header File
Instruction
VBROADCASTF32X2 zmm, xmm
Synopsis
_mm512_broadcast_f32x2(__m128 a);
Description
Broadcast the lower 2 packed single-precision (32-bit) floating-point elements from "a" to all elements of "dst".
Operation
FOR j := 0 to 15
i := j*32
n := (j % 2)*32
dst[i+31:i] := a[n+31:n]
ENDFOR
dst[MAX:512] := 0