From f96909e2fd4f92d0f4a38105be771ebd55752beb Mon Sep 17 00:00:00 2001 From: HimariO Date: Sat, 14 Dec 2024 11:58:38 +0800 Subject: [PATCH] remote old `rope_section` compare operator --- src/llama.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/llama.cpp b/src/llama.cpp index cb61d4802..abc1252e7 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -2557,7 +2557,6 @@ struct llama_hparams { if (this->rope_finetuned != other.rope_finetuned) return true; if (this->n_ctx_orig_yarn != other.n_ctx_orig_yarn) return true; - if (this->rope_sections != other.rope_sections) return true; if (std::equal(std::begin(this->rope_sections), std::end(this->rope_sections), std::begin(other.rope_sections))) return true;