diff --git a/llama.cpp b/llama.cpp index e0ff7e10c..c3b34c2c3 100644 --- a/llama.cpp +++ b/llama.cpp @@ -5517,6 +5517,9 @@ struct llm_build_context { struct ggml_tensor * cur; struct ggml_tensor * inpL; + inpL = llm_build_inp_embd(ctx0, hparams, batch, model.tok_embd, cb); + cb(inpL, "inp_embd", -1); + // KQ_scale struct ggml_tensor * KQ_scale = ggml_new_tensor_1d(ctx0, GGML_TYPE_F32, 1); cb(KQ_scale, "KQ_scale", -1);