Update src/llama.cpp
Co-authored-by: compilade <git@compilade.net>
This commit is contained in:
parent
b841554d0c
commit
092382fee3
1 changed files with 1 additions and 1 deletions
|
@ -13854,7 +13854,7 @@ struct llm_build_context {
|
|||
// self-attention
|
||||
{
|
||||
// compute Q and K and RoPE them
|
||||
struct ggml_tensor * Qcur = ggml_mul_mat(ctx0, model.layers[il].wq, cur);
|
||||
struct ggml_tensor * Qcur = llm_build_lora_mm(lctx, ctx0, model.layers[il].wq, cur);
|
||||
cb(Qcur, "Qcur", il);
|
||||
if (model.layers[il].bq) {
|
||||
Qcur = ggml_add(ctx0, Qcur, model.layers[il].bq);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue