From dc73ba91da091eb787ff2b11ab675850a3b9b459 Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Mon, 15 Dec 2025 10:16:19 +0100 Subject: [PATCH] typo --- src/llama-arch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama-arch.cpp b/src/llama-arch.cpp index 0af9829cda..1fcfbb707b 100644 --- a/src/llama-arch.cpp +++ b/src/llama-arch.cpp @@ -305,7 +305,7 @@ static const std::map LLM_KV_NAMES = { static const std::map LLM_TENSOR_NAMES = { { LLM_TENSOR_TOKEN_EMBD, "token_embd" }, { LLM_TENSOR_OUTPUT_NORM, "output_norm" }, - { LLM_TENSOR_OUTPUT_NORM_LFM2, "token_embd_norm" }, // fix for rong tensor name + { LLM_TENSOR_OUTPUT_NORM_LFM2, "token_embd_norm" }, // fix for wrong tensor name { LLM_TENSOR_OUTPUT, "output" }, { LLM_TENSOR_ROPE_FREQS, "rope_freqs" }, { LLM_TENSOR_ATTN_NORM, "blk.%d.attn_norm" },