From 660c33fa64a0cba1e8f1ec5567f650998b7e9b43 Mon Sep 17 00:00:00 2001 From: Saood Karim Date: Wed, 9 Jul 2025 21:13:23 -0500 Subject: [PATCH] Remove commented lines --- src/llama.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/llama.cpp b/src/llama.cpp index 19622d9d..8e6c66d3 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -17089,7 +17089,6 @@ struct llm_build_context { Qcur = ggml_reshape_3d(ctx0, Qcur, n_embd_head, n_head, n_tokens); Kcur = ggml_reshape_3d(ctx0, Kcur, n_embd_head, n_head_kv, n_tokens); - //Vcur = ggml_reshape_3d(ctx0, Vcur, n_embd_head, n_head_kv, n_tokens); Qcur = llm_build_norm(ctx0, Qcur, hparams, model.layers[il].attn_q_norm, NULL, LLM_NORM_RMS, cb, il); cb(Qcur, "Qcur_normed", il); @@ -17111,7 +17110,6 @@ struct llm_build_context { cb(Qcur, "Qcur", il); cb(Kcur, "Kcur", il); - //cb(Vcur, "Vcur", il); cur = llm_build_kv(ctx0, lctx, kv_self, gf, model.layers[il].wo, model.layers[il].bo,