File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ llama_context::llama_context(
180
180
/* .type_v =*/ params.type_v ,
181
181
};
182
182
183
- memory.reset (model.create_memory (params_mem, cparams, hparams ));
183
+ memory.reset (model.create_memory (params_mem, cparams));
184
184
}
185
185
186
186
// init backends
Original file line number Diff line number Diff line change @@ -13042,8 +13042,7 @@ struct llm_build_bailingmoe : public llm_graph_context {
13042
13042
13043
13043
llama_memory_i * llama_model::create_memory(
13044
13044
const llama_memory_params & params,
13045
- llama_cparams & cparams,
13046
- const llama_hparams & hparams) const {
13045
+ llama_cparams & cparams) const {
13047
13046
llama_memory_i * res;
13048
13047
13049
13048
switch (arch) {
Original file line number Diff line number Diff line change @@ -402,10 +402,7 @@ struct llama_model {
402
402
403
403
// note: can mutate `cparams`
404
404
// TODO: move this to new llm_arch_model_i interface
405
- llama_memory_i * create_memory (
406
- const llama_memory_params & params,
407
- llama_cparams & cparams,
408
- const llama_hparams & hparams) const ;
405
+ llama_memory_i * create_memory (const llama_memory_params & params, llama_cparams & cparams) const ;
409
406
410
407
// TODO: move this to new llm_arch_model_i interface
411
408
llm_graph_result_ptr build_graph (
You can’t perform that action at this time.
0 commit comments