File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3528,7 +3528,7 @@ static struct ggml_tensor * ggml_rope_impl(
3528
3528
memcpy (params + 8 , & attn_factor , sizeof (float ));
3529
3529
memcpy (params + 9 , & beta_fast , sizeof (float ));
3530
3530
memcpy (params + 10 , & beta_slow , sizeof (float ));
3531
- memcpy (params + 11 , & sections , sizeof (int ) * 4 );
3531
+ memcpy (params + 11 , & sections , sizeof (int ) * 4 );
3532
3532
ggml_set_op_params (result , params , sizeof (params ));
3533
3533
3534
3534
result -> op = GGML_OP_ROPE ;
Original file line number Diff line number Diff line change @@ -2555,9 +2555,9 @@ struct llama_hparams {
2555
2555
if (this->n_ff_shexp != other.n_ff_shexp) return true;
2556
2556
if (this->n_expert_shared != other.n_expert_shared) return true;
2557
2557
2558
- if (this->rope_finetuned != other.rope_finetuned) return true;
2559
- if (this->n_ctx_orig_yarn != other.n_ctx_orig_yarn) return true;
2560
- if (this->rope_sections != other.rope_sections) return true;
2558
+ if (this->rope_finetuned != other.rope_finetuned) return true;
2559
+ if (this->n_ctx_orig_yarn != other.n_ctx_orig_yarn) return true;
2560
+ if (this->rope_sections != other.rope_sections) return true;
2561
2561
2562
2562
if (this->ssm_d_conv != other.ssm_d_conv) return true;
2563
2563
if (this->ssm_d_inner != other.ssm_d_inner) return true;
You can’t perform that action at this time.
0 commit comments