_mm512_mask_blend_epi32
Classification
KNC, Swizzle, CPUID Test: KNCNI
Header File
immintrin.h
Instruction
VPBLENDMD zmm {k}, zmm, zmm
Synopsis
 _mm512_mask_blend_epi32(__mmask16 k, __m512i a, __m512i b);
Description
Blend packed 32-bit integers from "a" and "b" using control mask "k", and store the results in "dst".
Operation
FOR j := 0 to 15
	i := j*32
	IF k[j]
		dst[i+31:i] := b[i+31:i]
	ELSE
		dst[i+31:i] := a[i+31:i]
	FI
ENDFOR
dst[MAX:512] := 0