From f75265f55bb1d4470dea57f4c9e3ad108cc343a1 Mon Sep 17 00:00:00 2001 From: Ed Addario Date: Sat, 23 Aug 2025 01:08:37 +0100 Subject: [PATCH] Fix typo --- src/llama-quant.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama-quant.cpp b/src/llama-quant.cpp index d17b21d008..6e3aa3f83d 100644 --- a/src/llama-quant.cpp +++ b/src/llama-quant.cpp @@ -1535,7 +1535,7 @@ static void llama_model_quantize_impl(const std::string & fname_inp, const std:: std::unordered_map bpw_overrides = {}; if (params->target_bpw != -1.0f) { - LLAMA_LOG_INFO("%s: computing tensor quantization mix to achieve %.3f bpw at lowest ppl - this opearation may take some time\n", __func__, params->target_bpw); + LLAMA_LOG_INFO("%s: computing tensor quantization mix to achieve %.3f bpw at lowest ppl - this operation may take some time\n", __func__, params->target_bpw); bpw_overrides = target_bpw_type(ml, read_data, model, tensors, mapped, values_data, activations_data, params, nthread); }