Visible to Intel only — GUID: GUID-44FDD3F8-4763-4D3C-960C-6DF87D3DC21B
Visible to Intel only — GUID: GUID-44FDD3F8-4763-4D3C-960C-6DF87D3DC21B
_mm256_store_ps
Moves packed single-precision floating point values from a float32 vector to an aligned memory location. The corresponding Intel® AVX instruction isVMOVAPS.
Syntax
extern void _mm256_store_ps(float *a, __m256 b); |
Arguments
*a |
pointer to a memory location that can hold single-precision floating point (float32) values; the address must be 32-byte aligned |
b |
float32 vector |
Description
Performs a store operation by moving packed single-precision floating point values (float32 values) from a float32 vector, b, to a 256-bit aligned memory location, pointed to by a.
Returns
Nothing.