diff options
| author | Georgi Gerganov <ggerganov@gmail.com> | 2024-01-12 13:10:19 +0200 |
|---|---|---|
| committer | Georgi Gerganov <ggerganov@gmail.com> | 2024-01-12 13:11:15 +0200 |
| commit | 3cabe80630c7eeb57713cd02249053a8cf6894fa (patch) | |
| tree | c772b85dd9d2af6d3184edb2556fa00535c8e68e | |
| parent | 4315a94366708828f949f9db89d2a8d99b634459 (diff) | |
llama : fix typo "imp_embd" -> "inp_embd"
| -rw-r--r-- | llama.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
