Visible to Intel only — GUID: GUID-27EA00B6-F15F-4EC5-80EA-AFA553204C41
Visible to Intel only — GUID: GUID-27EA00B6-F15F-4EC5-80EA-AFA553204C41
<span class='option'>_mm256_load_ps</span>
Moves packed single-precision floating point values from aligned memory location to a destination vector. The corresponding Intel® AVX instruction isVMOVAPS.
extern __m256 _mm256_load_ps(float const *a); |
*a |
pointer to a memory location that can hold constant float32 values; the address must be 32-byte aligned |
Loads packed single-precision floating point values (float32 values) from the 256-bit aligned memory location pointed to by a, into a destination float32 vector, which is retured by the intrinsic.
A 256-bit vector with float32 values.