feat: add CLI flag to control communication and computation logging

This commit is contained in:
DaninPower
2025-08-02 12:55:12 +00:00
parent e00cef66ac
commit 96191d3b6f
6 changed files with 36 additions and 6 deletions
+2
View File
@@ -2021,6 +2021,8 @@ struct llama_context_params llama_context_params_from_gpt_params(const gpt_param
cparams.dump_folder = nullptr;
}
cparams.enable_comm_compute_log = params.enable_comm_compute_log;
cparams.n_ctx = params.n_ctx;
cparams.n_predict = params.n_predict;
cparams.n_seq_max = params.n_parallel;