Visible to Intel only — GUID: GUID-87DE517B-292D-490F-AF95-DC11A19B1483
Visible to Intel only — GUID: GUID-87DE517B-292D-490F-AF95-DC11A19B1483
_mm256_stream_ps
Moves packed single-precision floating-point values using non-temporal hint. The corresponding Intel® AVX instruction is VMOVNTPS.
Syntax
extern void _mm256_stream_ps(float *p, __m256 a); |
Arguments
*p |
pointer to a memory location that can hold single-precision floating point (float32) values; the address must be 32-byte aligned |
a |
float32 vector |
Description
Performs a store operation by moving packed single-precision floating point values (float32 values) from a float32 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.
Returns
Result of the streaming/store operation.