_mm256_movm_epi64
Classification
AVX-512, Miscellaneous, CPUID Test: AVX512DQ
Header File
immintrin.h
Instruction
VPMOVM2Q ymm
Synopsis
 _mm256_movm_epi64(__mmask8 k);
Description
Set each packed 64-bit integer in "dst" to all ones or all zeros based on the value of the corresponding bit in "k".
Operation
FOR j := 0 to 3
	i := j*64
	IF k[j]
		dst[i+63:i] := 0xFFFFFFFFFFFFFFFF
	ELSE
		dst[i+63:i] := 0
	FI
ENDFOR
dst[MAX:256] := 0