Update examples/parallel/parallel.cpp
This commit is contained in:
parent
defffb6055
commit
4bded6e23c
1 changed files with 2 additions and 2 deletions
|
@ -401,8 +401,8 @@ int main(int argc, char ** argv) {
|
|||
if (params.prompt_file.empty()) {
|
||||
params.prompt_file = "used built-in defaults";
|
||||
}
|
||||
printf("External prompt file: \033[32m%s\033[0m\n", params.prompt_file.c_str());
|
||||
printf("Model and path used: \033[32m%s\033[0m\n\n", params.model.c_str());
|
||||
LOG_TEE("External prompt file: \033[32m%s\033[0m\n", params.prompt_file.c_str());
|
||||
LOG_TEE("Model and path used: \033[32m%s\033[0m\n\n", params.model.c_str());
|
||||
|
||||
LOG_TEE("Total prompt tokens: %6d, speed: %5.2f t/s\n", n_total_prompt, (double) (n_total_prompt ) / (t_main_end - t_main_start) * 1e6);
|
||||
LOG_TEE("Total gen tokens: %6d, speed: %5.2f t/s\n", n_total_gen, (double) (n_total_gen ) / (t_main_end - t_main_start) * 1e6);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue