_kortestc_mask8_u8
Classification
AVX-512, Mask, CPUID Test: AVX512DQ
Header File
immintrin.h
Instruction
KORTESTB k, k
Synopsis
 _kortestc_mask8_u8(__mmask8 a, __mmask8 b);
Description
Compute the bitwise OR of 8-bit masks "a" and "b". If the result is all ones, store 1 in "dst", otherwise store 0 in "dst".
Operation
tmp[7:0] := a[7:0] OR b[7:0]
IF tmp[7:0] == 0xFF
	dst := 1
ELSE
	dst := 0
FI