Intel® C++ Compiler Classic Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-8E51FD07-B435-45DA-91E4-E189138E982C
Visible to Intel only — GUID: GUID-8E51FD07-B435-45DA-91E4-E189138E982C
<span class='option'>_mm256_store_pd</span>
Moves packed double-precision floating point values from a float64 vector to an aligned memory location. The corresponding Intel® AVX instruction isVMOVAPD.
extern void _mm256_store_pd(double *a, __m256d b); |
*a |
pointer to a memory location that can hold double-precision floating point (float64) values; the address must be 32-byte aligned |
b |
float64 vector |
Performs a store operation by moving packed double-precision floating point values (float64 values) from a float64 vector, b, to a 256-bit aligned memory location, pointed to by a.
Nothing