Skip to content

Commit d8d22a8

Browse files
committed
Track max-concurrency for throughput
Signed-off-by: Samuel Monson <[email protected]>
1 parent 49ae751 commit d8d22a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guidellm/scheduler/strategies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def __str__(self) -> str:
387387
"""
388388
:return: String identifier for throughput strategy
389389
"""
390-
return "throughput"
390+
return f"throughput@{self.max_concurrency or 'unlimited'}"
391391

392392
@property
393393
def processes_limit(self) -> PositiveInt | None:

0 commit comments

Comments
 (0)