Visible to Intel only — GUID: GUID-54199FF8-D17D-446C-B634-1CFB3645E453
Visible to Intel only — GUID: GUID-54199FF8-D17D-446C-B634-1CFB3645E453
<span class='option'>_mm256_storeu_ps</span>
Moves packed single-precision floating point values from a float32 vector to an unaligned memory location. The corresponding Intel® AVX instruction isVMOVUPS.
extern void _mm256_storeu_ps(float *a, __m256 b); |
*a |
pointer to a memory location that can hold single-precision floating point (float32) values |
b |
float32 vector |
Performs a store operation by moving packed single-precision floating point values (float32 values) from a float32 vector, b, to a 256-bit unaligned memory location, pointed to by a.
Nothing.