_kortestc_mask64_u8
Classification
AVX-512, Mask, CPUID Test: AVX512BW
Header File
Instruction
KORTESTQ k, k
Synopsis
_kortestc_mask64_u8(__mmask64 a, __mmask64 b);
Description
Compute the bitwise OR of 64-bit masks "a" and "b". If the result is all ones, store 1 in "dst", otherwise store 0 in "dst".
Operation
tmp[63:0] := a[63:0] OR b[63:0]
IF tmp[63:0] == 0xFFFFFFFFFFFFFFFF
dst := 1
ELSE
dst := 0
FI