Skip to content

Commit

Permalink
Fix decoupled batch statistics to account for implicit batch size (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
kthui authored May 31, 2024
1 parent 01ba273 commit 4551e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python_be.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,7 @@ ModelInstanceState::ProcessRequests(
uint64_t compute_end_ns = 0;
SET_TIMESTAMP(compute_end_ns);
reporter.SetComputeEndNs(compute_end_ns);
reporter.SetBatchStatistics(request_count);
reporter.SetBatchStatistics(total_batch_size);

if (response_batch.data_->has_error) {
if (response_batch.data_->is_error_set) {
Expand Down

0 comments on commit 4551e04

Please sign in to comment.