_mm_broadcastss_ps
Classification
AVX_ALL, Swizzle, CPUID Test: AVX2
Header File
immintrin.h
Instruction
VBROADCASTSS xmm, xmm
Synopsis
 _mm_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 3
	i := j*32
	dst[i+31:i] := a[31:0]
ENDFOR
dst[MAX:128] := 0