diff --git a/llama.cpp b/llama.cpp index 19b30ba56..c2799ecb7 100644 --- a/llama.cpp +++ b/llama.cpp @@ -1884,7 +1884,7 @@ struct llama_hparams { if (!is_float_close(this->f_norm_rms_eps, other.f_norm_rms_eps, EPSILON)) return true; if (!is_float_close(this->rope_freq_base_train, other.rope_freq_base_train, EPSILON)) return true; if (!is_float_close(this->rope_freq_scale_train, other.rope_freq_scale_train, EPSILON)) return true; - if (!is_float_close(this->expert_weights_scale, other.expert_weights_scale,EPSILON)) return true; + if (!is_float_close(this->expert_weights_scale, other.expert_weights_scale, EPSILON)) return true; return false; }