mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-07-27 09:43:40 +00:00
quant : fix quantizing moe with mtp (#24986)
This commit is contained in:
parent
e9fb3b3fc0
commit
b3ce5cedf4
1 changed files with 1 additions and 1 deletions
|
|
@ -847,7 +847,7 @@ static void init_quantize_state_counters(quantize_state_impl & qs, std::vector<t
|
|||
qs.has_tied_embeddings = false;
|
||||
}
|
||||
}
|
||||
qs.n_ffn_down = qs.n_ffn_gate = qs.n_ffn_up = (int)qs.model.hparams.n_layer();
|
||||
qs.n_ffn_down = qs.n_ffn_gate = qs.n_ffn_up = (int)qs.model.hparams.n_layer_all;
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue