Skip to content

Commit 3cabe80

Browse files
committed
llama : fix typo "imp_embd" -> "inp_embd"
1 parent 4315a94 commit 3cabe80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5040,7 +5040,7 @@ struct llm_build_context {
50405040
struct ggml_tensor * inpL;
50415041

50425042
inpL = llm_build_inp_embd(ctx0, hparams, batch, model.tok_embd, cb);
5043-
cb(inpL, "imp_embd", -1);
5043+
cb(inpL, "inp_embd", -1);
50445044

50455045
// inp_pos - contains the positions
50465046
struct ggml_tensor * inp_pos = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_tokens);

0 commit comments

Comments
 (0)