From bf5e344056cfaaa02d1c9a87b517846ee10d3c3c Mon Sep 17 00:00:00 2001 From: younesbelkada Date: Sun, 18 Aug 2024 15:37:42 +0000 Subject: [PATCH] add in operator --- src/llama.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/llama.cpp b/src/llama.cpp index 13222f53a..c1e3c8f24 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -2289,6 +2289,7 @@ struct llama_hparams { if (this->ssm_d_inner != other.ssm_d_inner) return true; if (this->ssm_d_state != other.ssm_d_state) return true; if (this->ssm_dt_rank != other.ssm_dt_rank) return true; + if (this->ssm_dt_b_c_rms != other.ssm_dt_b_c_rms) return true; if (this->dec_start_token_id != other.dec_start_token_id) return true;