_mm512_maskz_load_epi32
Classification
AVX-512, Load, CPUID Test: AVX512F
Header File
immintrin.h
Instruction
VMOVDQA32 zmm {z}, m512
Synopsis
 _mm512_maskz_load_epi32(__mmask16 k, void const* mem_addr);
Description
Load packed 32-bit integers from memory into "dst" using zeromask "k" (elements are zeroed out 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] := 0
	FI
ENDFOR
dst[MAX:512] := 0