_mm256_lddqu_si256
Classification
Header File
Instruction
VLDDQU ymm, m256
Synopsis
_mm256_lddqu_si256(__m256i const * mem_addr);
Description
Load 256-bits of integer data from unaligned memory into "dst". This intrinsic may perform better than "_mm256_loadu_si256" when the data crosses a cache line boundary.
Operation
dst[255:0] := MEM[mem_addr+255:mem_addr]
dst[MAX:256] := 0