_mm256_broadcast_ps
Classification
Header File
Instruction
VBROADCASTF128 ymm, m128
Synopsis
_mm256_broadcast_ps(__m128 const * mem_addr);
Description
Broadcast 128 bits from memory (composed of 4 packed single-precision (32-bit) floating-point elements) to all elements of "dst".
Operation
tmp[127:0] := MEM[mem_addr+127:mem_addr]
dst[127:0] := tmp[127:0]
dst[255:128] := tmp[127:0]
dst[MAX:256] := 0