_mm512_kortestc
Classification
Header File
Instruction
KORTESTW k, k
Synopsis
_mm512_kortestc(__mmask16 k1, __mmask16 k2);
Description
Performs bitwise OR between "k1" and "k2", storing the result in "dst". CF flag is set if "dst" consists of all 1's.
Operation
dst[15:0] := k1[15:0] | k2[15:0]
IF PopCount(dst[15:0]) == 16
SetCF()
FI