_mm512_broadcastss_ps
Classification
AVX-512, Swizzle, CPUID Test: AVX512F
Header File
immintrin.h
Instruction
VBROADCASTSS zmm, xmm
Synopsis
 _mm512_broadcastss_ps(__m128 a);
Description
Broadcast the low single-precision (32-bit) floating-point element from "a" to all elements of "dst".
Operation
FOR j := 0 to 15
	i := j*32
	dst[i+31:i] := a[31:0]
ENDFOR
dst[MAX:512] := 0