Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
黄宇扬 committed Aug 14, 2024
1 parent 5c282eb commit 249b0c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/basellm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ printf("len = %d, spend = %f s. tokens / s = %f\n", (int)total, spend, (float)to
pending++;
}
}
printf("alive = %d, pending = %d, contextLen = %d, Speed: %f tokens / s.\n", alive, pending, aliveLen, (int)seqLens.size(), (float)genTokens / spend);
printf("alive = %d, pending = %d, contextLen = %d, Speed: %f tokens / s.\n", alive, pending, aliveLen, (float)genTokens / spend);
lastRecordTime = nowTime;
genTokens = 0;
}
Expand Down

0 comments on commit 249b0c7

Please sign in to comment.