Intel® C++ Compiler Classic Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-C07AF508-CC8B-4F23-AFC2-5C9F7658D299
Visible to Intel only — GUID: GUID-C07AF508-CC8B-4F23-AFC2-5C9F7658D299
<span class='option'>_mm256_store_si256</span>
Moves values from a integer vector to an aligned memory location. The corresponding Intel® AVX instruction is VMOVDQA.
extern void _mm256_store_si256(__m256i *a, __m256i b); |
*a |
pointer to a memory location that can hold scalar integer values; the address must be 32-byte aligned. |
b |
integer vector |
Performs a store operation by moving integer values from a 256-bit integer vector, b, to a 256-bit aligned memory location, pointed to by a.
Nothing.