_mm256_broadcastss_ps
Classification
Header File
Instruction
VBROADCASTSS ymm, xmm
Synopsis
_mm256_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 7
i := j*32
dst[i+31:i] := a[31:0]
ENDFOR
dst[MAX:256] := 0