_mm256_loadu2_m128d
Classification
Header File
Synopsis
_mm256_loadu2_m128d(double const* hiaddr, double const* loaddr);
Description
Load two 128-bit values (composed of 2 packed double-precision (64-bit) floating-point elements) from memory, and combine them into a 256-bit value in "dst".
"hiaddr" and "loaddr" do not need to be aligned on any particular boundary.
Operation
dst[127:0] := MEM[loaddr+127:loaddr]
dst[255:128] := MEM[hiaddr+127:hiaddr]
dst[MAX:256] := 0