-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
[V1] V1 engine implements parallel sampling, 1/2: AsyncLLM support #10980
base: main
Are you sure you want to change the base?
Conversation
👋 Hi! Thank you for contributing to the vLLM project. 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 do one of these:
🚀 |
This pull request has merge conflicts that must be resolved before it can be |
7cd9a24
to
f506458
Compare
It seems like this PR is implementing ideas similar to those implemented in PR #9302 for the V0 engine. That PR created some issues that were addressed in PR #11898 and which may exist in the proposed V1 code. In particular, the proposed code currently does not properly handle the case when a seed value is provided for the parent request; the seed value is duplicated in child requests, leading to identical outputs in the child requests. The fix in #11898 was simply to move the copying of the Additionally, the proposed code for the V1 engine defines |
This pull request has merge conflicts that must be resolved before it can be |
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
3d5b962
to
bf3cfd0
Compare
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
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.
Thanks @afeldman-nm, I have quite a few comments, mostly simplification.
I guess in the non-prefix-cache + prompt-logprobs case, it would also be beneficial to have only one of the child requests enable prompt logprobs. But maybe that would complicate things slightly when aggregating the outputs so fine to punt on it I think, especially if we're planning to add support for prompt logprobs with APC.
vllm/v1/engine/async_llm.py
Outdated
try: | ||
while active: | ||
done, _ = await asyncio.wait( | ||
active.keys(), return_when=asyncio.FIRST_COMPLETED) | ||
for task in done: | ||
idx = active.pop(task) | ||
try: | ||
result = task.result() | ||
yield result | ||
# Schedule the next result | ||
active[asyncio.create_task( | ||
gens[idx].__anext__())] = idx # type: ignore | ||
except StopAsyncIteration: | ||
continue | ||
finally: | ||
for task in active: | ||
task.cancel() |
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 think the merge_async_generators
util function can be used here.
Why do we need this? V1's prefix caching implementation can deduplicate the prompts even if they are scheduled in the same batch without the warmup. |
Co-authored-by: Nick Hill <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
Co-authored-by: Nick Hill <[email protected]>
Co-authored-by: Nick Hill <[email protected]>
Thanks for working on this. I haven't had a chance to look into the specifics of the new implementation but also wanted to ask about n>1 behavior as this PR (#9302) reduced our throughput by about 3x. It seems that sequence forking was extremely important in the v0 engine. Is an equivalent strategy going to be used in v1? We're now waiting for n>1 support in the v1 engine before we can upgrade past 0.6.3. Thanks |
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
Thanks for the feedback. I think this is because you didn't add |
Hi thanks for the reply. We did pass Edit: I got a notification for a comment by @ afeldman-nm but oddly enough it's not showing up now. Per your question, we see the decreased throughput in VLLM's log stats. The number of generated tokens / sec falls from roughly 7k/sec to 2k/sec. In contrast, the prompt throughput rises by about 4-5x. This is for a value of n between 50 and 100. We did have prefix caching enabled in the engine args. |
Signed-off-by: Andrew Feldman <[email protected]>
Hi @m-harmonic , sorry I deleted my response because I thought @WoosukKwon 's suggestion to use prefix caching was more relevant, although it appears that that did not resolve the issue. Although, based on the metrics you shared, it sounds like prefix caching is working but the decode throughput is the issue. |
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
Signed-off-by: Andrew Feldman <[email protected]>
Thanks @afeldman-nm, appreciate the reply. One thing I'm wondering is whether matching n>1 throughput performance pre-0.6.4 is a priority for this change or follow-up work. It seems like fundamentally this new approach confers lower throughput. Relatedly, is there an architectural reason why this new approach is necessary in v1 or is it possible forking could be added later on if it makes a big difference? |
This PR adds support for parallel sampling to v1 AsyncLLM. A follow-up PR will add support to v1 LLMEngine.
Parallel sampling is implemented outside the engine. This does not impact the vLLM v0 parallel sampling implementation.
Design doc: https://docs.google.com/document/d/1_fvbHVCfexkPAj2Vx0Q0gNvE-b53WwtrLrD6NldgBFU/edit?usp=sharing (message me if you need access permissions)
A request with
n>1
will spawnn
requests withn=1
and aggregate their outputs in accordance with theoutput_kind
. If prefix caching is enabled, an initial warmup request withmax_tokens=1
will be sent to the engine to fill the prefix cache.