From: Georgi Gerganov Date: Fri, 12 Jan 2024 11:10:19 +0000 (+0200) Subject: llama : fix typo "imp_embd" -> "inp_embd" X-Git-Tag: upstream/0.0.4488~2650 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=3cabe80630c7eeb57713cd02249053a8cf6894fa;p=pkg%2Fggml%2Fsources%2Fllama.cpp llama : fix typo "imp_embd" -> "inp_embd" --- diff --git a/llama.cpp b/llama.cpp index 0bab9556..29f8873f 100644 --- a/llama.cpp +++ b/llama.cpp @@ -5040,7 +5040,7 @@ struct llm_build_context { struct ggml_tensor * inpL; inpL = llm_build_inp_embd(ctx0, hparams, batch, model.tok_embd, cb); - cb(inpL, "imp_embd", -1); + cb(inpL, "inp_embd", -1); // inp_pos - contains the positions struct ggml_tensor * inp_pos = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_tokens);