_kshiftli_mask16
Classification
AVX-512, Mask, CPUID Test: AVX512F
Header File
immintrin.h
Instruction
KSHIFTLW k, k, imm8
Synopsis
 _kshiftli_mask16(__mmask16 a, unsigned int count);
Description
Shift the bits of 16-bit mask "a" left by "count" while shifting in zeros, and store the least significant 16 bits of the result in "k".
Operation
k[MAX:0] := 0
IF count[7:0] <= 15
	k[15:0] := a[15:0] << count[7:0]
FI