-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
[benchmark] add max-concurrency in result table #21095
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
👋 Hi! Thank you for contributing to the vLLM project. 💬 Join our developer Slack at https://slack.vllm.ai to discuss your PR in #pr-reviews, coordinate on features in #feat- channels, or join special interest groups in #sig- channels. Just a reminder: PRs would not trigger full CI run by default. Instead, it would only run Once the PR is approved and ready to go, your PR reviewer(s) can run CI to test the changes comprehensively before merging. To run CI, PR reviewers can either: Add 🚀 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request adds the max-concurrency
setting to the benchmark results table. The implementation is straightforward, but I've identified a high-severity correctness issue where the benchmark could report a concurrency limit of 0 while actually running with unlimited concurrency. My review includes suggestions to mitigate this misleading output by making the reporting logic consistent with the actual execution logic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't have a strong opinion on adding this argument, I would just argue request-rate
is probably as important.
We will need to edit vllm/benchmarks/serve.py
too, as we'll want to move to vllm bench
eventually.
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io>
Signed-off-by: Peter Pan <Peter.Pan@daocloud.io>
7483853
to
c992bf8
Compare
thanks @NickLucche . Correct, when "request-rate" < "max-concurrency" , the real concurrency which LLM server feels would be But if digging deeper, there're many other aspects affecting the instantaneous concurrent value, like So back to my init motivation: and I just added request-rate as you suggested , thank for your time again, @NickLucche |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm, thanks for contributing
Essential Elements of an Effective PR Description Checklist
supported_models.md
andexamples
for a new model.Purpose
to fix #21094
Test Plan
test CLI
Test Result
(Optional) Documentation Update