Skip to content

Commit

Permalink
Fix decoupled batch statistics to account for implicit batch size
Browse files Browse the repository at this point in the history
  • Loading branch information
kthui committed May 22, 2024
1 parent bc16e1a commit 89512e6
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 89512e6

Please sign in to comment.