_mm256_storeu2_m128d
Classification
AVX_ALL, Store, CPUID Test: AVX
Header File
immintrin.h
Synopsis
 _mm256_storeu2_m128d(double* hiaddr, double* loaddr, __m256d a);
Description
Store the high and low 128-bit halves (each composed of 2 packed double-precision (64-bit) floating-point elements) from "a" into memory two different 128-bit locations. "hiaddr" and "loaddr" do not need to be aligned on any particular boundary.
Operation
MEM[loaddr+127:loaddr] := a[127:0]
MEM[hiaddr+127:hiaddr] := a[255:128]