From a22a9deeeeb51e6f647bb185301b9874538d0324 Mon Sep 17 00:00:00 2001 From: Ed Addario Date: Tue, 19 Aug 2025 10:57:44 +0100 Subject: [PATCH] Refactor variable and add target_bpw --- src/llama-quant.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/llama-quant.cpp b/src/llama-quant.cpp index 1d0361cc16..2e1ca7216e 100644 --- a/src/llama-quant.cpp +++ b/src/llama-quant.cpp @@ -1062,9 +1062,11 @@ llama_model_quantize_params llama_model_quantize_default_params() { /*.pure =*/ false, /*.keep_split =*/ false, /*.imatrix =*/ nullptr, + /*.activations =*/ nullptr, /*.kv_overrides =*/ nullptr, /*.tensor_type =*/ nullptr, - /*.prune_layers =*/ nullptr + /*.prune_layers =*/ nullptr, + /*.target_bpw =*/ -1.0f }; return result;