Skip to content

Commit 61714df

Browse files
committed
Track max-concurrency for throughput
1 parent 1741526 commit 61714df

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)