We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8115ad2 + fd473fb commit 1faa5ceCopy full SHA for 1faa5ce
src/guidellm/benchmark/aggregator.py
@@ -403,7 +403,7 @@ def add_result(
403
in_warmup_duration = (
404
self.args.warmup_duration
405
and result.request_info.worker_start
406
- <= (global_start_time - self.args.warmup_duration)
+ <= (global_start_time + self.args.warmup_duration)
407
)
408
409
if in_warmup_number or in_warmup_duration:
src/guidellm/benchmark/benchmark.py
@@ -816,7 +816,7 @@ def from_stats(
816
for req in total_with_output_first
817
],
818
iter_counts=[
819
- req.prompt_tokens + req.output_tokens
+ req.output_tokens
820
821
822
first_iter_counts=[
0 commit comments