diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-01-07 14:29:36 +0200 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2024-01-07 14:29:36 +0200 |
commit | 9dede37d812604897496dd9d276ae9fbe13d1042 (patch) | |
tree | 095327cf3dd018af5a1666061adddd5db4c1eb0d | |
parent | 3c36213df850a2353e95572b3636797c79b7c815 (diff) |
llama : remove unused vars (#4796)
-rw-r--r-- | llama.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -4997,7 +4997,6 @@ struct llm_build_context { struct ggml_cgraph * gf = ggml_new_graph_custom(ctx0, LLAMA_MAX_NODES, false); const int64_t n_embd_head = hparams.n_embd_head_v; - const int64_t n_embd_gqa = hparams.n_embd_v_gqa(); GGML_ASSERT(n_embd_head == hparams.n_embd_head_k); const int64_t n_rot = n_embd_head_k / 2; @@ -5210,7 +5209,6 @@ struct llm_build_context { struct ggml_cgraph * gf = ggml_new_graph_custom(ctx0, LLAMA_MAX_NODES, false); const int64_t n_embd_head = hparams.n_embd_head_v; - const int64_t n_embd_gqa = hparams.n_embd_v_gqa(); GGML_ASSERT(n_embd_head == hparams.n_embd_head_k); struct ggml_tensor * cur; |