_mm256_storeu_epi8
Classification
AVX-512, Store, CPUID Test: AVX512BW
Header File
Instruction
VMOVDQU8 m256, ymm
Synopsis
_mm256_storeu_epi8(void* mem_addr, __m256i a);
Description
Store 256-bits (composed of 32 packed 8-bit integers) from "a" into memory.
"mem_addr" does not need to be aligned on any particular boundary.
Operation
MEM[mem_addr+255:mem_addr] := a[255:0]