_mm512_movepi32_mask
Classification
AVX-512, Miscellaneous, CPUID Test: AVX512DQ
Header File
Instruction
VPMOVD2M k, zmm
Synopsis
_mm512_movepi32_mask(__m512i a);
Description
Set each bit of mask register "k" based on the most significant bit of the corresponding packed 32-bit integer in "a".
Operation
FOR j := 0 to 15
i := j*32
IF a[i+31]
k[j] := 1
ELSE
k[j] := 0
FI
ENDFOR
k[MAX:16] := 0