]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
llama : fix typo "imp_embd" -> "inp_embd"
authorGeorgi Gerganov <redacted>
Fri, 12 Jan 2024 11:10:19 +0000 (13:10 +0200)
committerGeorgi Gerganov <redacted>
Fri, 12 Jan 2024 11:11:15 +0000 (13:11 +0200)
llama.cpp

index 0bab95563a226a9cb494b11a2f2271ec8fd0784d..29f8873f629e5ea991906d9fc5f3508822c0952e 100644 (file)
--- 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);