From: Georgi Gerganov Date: Fri, 12 Jan 2024 18:54:12 +0000 (+0200) Subject: llama : remove redundant assert for StableLM (#4901) X-Git-Tag: upstream/0.0.4488~2645 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=584d674be622fbf1578694ada6e62eebedbfd377;p=pkg%2Fggml%2Fsources%2Fllama.cpp llama : remove redundant assert for StableLM (#4901) --- diff --git a/llama.cpp b/llama.cpp index 29f8873f..ce413f60 100644 --- a/llama.cpp +++ b/llama.cpp @@ -5530,7 +5530,6 @@ struct llm_build_context { const int64_t n_embd_head = hparams.n_embd_head_v; GGML_ASSERT(n_embd_head == hparams.n_embd_head_k); - GGML_ASSERT(n_embd_head == hparams.n_rot); struct ggml_tensor * cur; struct ggml_tensor * inpL;