_mm512_mask_load_epi32
Classification
KNC, Load, CPUID Test: KNCNI
Header File
Instruction
VMOVDQA32 zmm {k}, m512
Synopsis
_mm512_mask_load_epi32(__m512i src, __mmask16 k, void const* mem_addr);
Description
Load packed 32-bit integers from memory into "dst" using writemask "k" (elements are copied from "src" when the corresponding mask bit is not set).
"mem_addr" must be aligned on a 64-byte boundary or a general-protection exception may be generated.
Operation
FOR j := 0 to 15
i := j*32
IF k[j]
dst[i+31:i] := MEM[mem_addr+i+31:mem_addr+i]
ELSE
dst[i+31:i] := src[i+31:i]
FI
ENDFOR
dst[MAX:512] := 0