diff --git a/LLama/Native/LLamaModelQuantizeParams.cs b/LLama/Native/LLamaModelQuantizeParams.cs index 8f10b2ff3..39702b5a7 100644 --- a/LLama/Native/LLamaModelQuantizeParams.cs +++ b/LLama/Native/LLamaModelQuantizeParams.cs @@ -48,5 +48,15 @@ public bool only_copy set => _only_copy = Convert.ToSByte(value); } private sbyte _only_copy; + + /// + /// disable k-quant mixtures and quantize all tensors to the same type + /// + public bool pure + { + get => Convert.ToBoolean(_pure); + set => _pure = Convert.ToSByte(value); + } + private sbyte _pure; } }