Whitespace formatting fixes.

This commit is contained in:
Stanisław Szymczyk 2024-05-19 20:14:14 +02:00
parent f99df46f98
commit 3ae7235e94

View file

@ -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;
}