From 2015dea82076254da7c2c8c77da9e1a2679854a4 Mon Sep 17 00:00:00 2001 From: Colin Kealty <3266127+bartowski1182@users.noreply.github.com> Date: Tue, 10 Mar 2026 11:14:54 -0400 Subject: [PATCH] Changes needed from rebase --- tests/test-quant-type-selection.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test-quant-type-selection.cpp b/tests/test-quant-type-selection.cpp index 3384e4af11..d5e06173f6 100644 --- a/tests/test-quant-type-selection.cpp +++ b/tests/test-quant-type-selection.cpp @@ -216,8 +216,8 @@ static std::unique_ptr build_mock_model_from_remote(const gguf_remo model->type = infer_llm_type(model->arch, remote); model->hparams.n_embd = remote.n_embd; - model->hparams.n_embd_head_k = remote.n_embd_head_k; - model->hparams.n_embd_head_v = remote.n_embd_head_v; + model->hparams.n_embd_head_k_full = remote.n_embd_head_k; + model->hparams.n_embd_head_v_full = remote.n_embd_head_v; model->hparams.n_layer = remote.n_layer; model->hparams.n_expert = remote.n_expert; @@ -408,7 +408,7 @@ static bool run_test_section(llama_model & mdl, } if (got != expected) { - printf(" FAIL [%s] %-50s expected %s, got %s\n", llama_ftype_to_name(section.ftype), name.c_str(), ggml_type_name(expected), ggml_type_name(got)); + printf(" FAIL %-50s expected %s, got %s\n", name.c_str(), ggml_type_name(expected), ggml_type_name(got)); all_pass = false; } }