main : disable token count by default (#4874)
This commit is contained in:
parent
b037787548
commit
3ca63b4538
3 changed files with 6 additions and 6 deletions
|
@ -651,8 +651,8 @@ int main(int argc, char ** argv) {
|
|||
|
||||
LOG("n_past = %d\n", n_past);
|
||||
// Display total tokens alongside total time
|
||||
if (n_past % params.token_interval == 0) {
|
||||
printf("\n\033[31mTokens consumed so far = %d / %d \033[0m\n", n_past, n_ctx);
|
||||
if (params.token_interval > 0 && n_past % params.token_interval == 0) {
|
||||
LOG_TEE("\n\033[31mTokens consumed so far = %d / %d \033[0m\n", n_past, n_ctx);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue