Visible to Intel only — GUID: GUID-AFB6CDB2-9770-4546-84A0-171ADA783D53
Visible to Intel only — GUID: GUID-AFB6CDB2-9770-4546-84A0-171ADA783D53
<span class='option'>_mm256_stream_pd</span>
Moves packed double-precision floating-point values using non-temporal hint. The corresponding Intel® AVX instruction is VMOVNTPD.
extern void _mm256_stream_pd(double *p, __m256d a); |
*p |
pointer to a memory location that can hold double-precision floating point (float64) values; the address must be 32-byte aligned |
a |
float64 vector |
Performs a store operation by moving packed double-precision floating point values (float64 values) from a float64 vector, a, to a 256-bit aligned memory location, pointed to by p, using a non-temporal hint to prevent caching of the data during the write to memory.
Result of the streaming/store operation.