-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
[Core] Pipeline parallel with Ray ADAG #6837
Conversation
👋 Hi! Thank you for contributing to the vLLM project. Once the PR is approved and ready to go, please make sure to run full CI as it is required to merge (or just use auto-merge). To run full CI, you can do one of these:
🚀 |
/ready |
038f7cb
to
d0a7250
Compare
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.
Very cool!
@andoorve would be great to get your review as well. |
Will take a look today/tomorrow! |
assert len(self.pp_tp_workers[pp_rank]) == tp_rank | ||
assert pp_rank < len(self.pp_tp_workers) | ||
self.pp_tp_workers[pp_rank].append(self.workers[rank]) | ||
|
||
# This is the list of workers that are rank 0 of each TP group EXCEPT | ||
# global rank 0. These are the workers that will broadcast to the | ||
# rest of the workers. |
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.
Possible to somehow integrate this with the previous self.pp_tp_workers
? If not no worries
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 attempted twice and it broke either driver mode or adag :( . I think there are pros and cons whether to unify with the same code path. If there is consensus we should go with unification, I can try harder to achieve that.
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 think it's a super huge deal since it's limited to this backend. But if it's possible to do so with a little work I think it cleans up the code a little bit. Can ask for @youkaichao opinion as well
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.
Hi @youkaichao, do you have a preference whether we separate the implementations of spmd (aDAG) vs non-spmd or unify them at this point? I had the impression you may perfer keeping them separate for now but wanted to check.
327111e
to
4fd1525
Compare
eec9c3a
to
4043cb2
Compare
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! @andoorve can you also give a quick approval if it looks okay?
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! @andoorve can you also give a quick approval if it looks okay?
Yes @rkooo567 give me a little time to re-review |
sorry, didn't notice that you pinged me in this PR. will take a look later. |
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.
@rkooo567 I took a look again, only 2 things:
- If @ruisearch42 can confirm this has been tested locally:
Awesome!! Just a small thing you might want to run the multinode tests a few times. This passed like 50% of the time, as the failures we saw before adding extra logic for worker_ranks were intermittent
- If @youkaichao can respond to the comments above where we've pinged
Code itself LGTM
@youkaichao can you also take a look at this PR #6903 (it is not ready at all, but if you review the general approach that would be great)? I think this PR is pretty self-contained with ray backend, but the other PR will be more larger scope |
@youkaichao since the change is pretty self contained, I am merging it. Please let us know if you have any feedback! We will follow up immediately |
Support pipeline-parallelism with Ray accelerated DAG. Signed-off-by: Rui Qiao <ruisearch42@gmail.com>
Support pipeline-parallelism with Ray accelerated DAG. Signed-off-by: Rui Qiao <ruisearch42@gmail.com>
Support pipeline-parallelism with Ray accelerated DAG. Signed-off-by: Rui Qiao <ruisearch42@gmail.com> Signed-off-by: Alvant <alvasian@yandex.ru>
Support pipeline-parallelism with Ray accelerated DAG.
Benchmarking result
“avg latency” column format: adag_nccl, adag_shm, mp, ray (baseline)
adag_nccl: ADAG backend, with NCCL communication between PP stages
adag_shm: ADAG backend, with shared memory communication between PP stages
mp: multiprocessing backend; (not supported for multi-nodes, using N/A to indicate)
ray: ray backend, used as baseline
“% comparison” column format: (adag_nccl / ray) * 100%, (adag_shm / ray) * 100%, (mp / ray) * 100%
The three comparisons use ray as baseline
< 100%: latency is better
> 100%: latency is worse
BEFORE SUBMITTING, PLEASE READ THE CHECKLIST BELOW AND FILL IN THE DESCRIPTION ABOVE
PR Checklist (Click to Expand)
Thank you for your contribution to vLLM! Before submitting the pull request, please ensure the PR meets the following criteria. This helps vLLM maintain the code quality and improve the efficiency of the review process.
PR Title and Classification
Only specific types of PRs will be reviewed. The PR title is prefixed appropriately to indicate the type of change. Please use one of the following:
[Bugfix]
for bug fixes.[CI/Build]
for build or continuous integration improvements.[Doc]
for documentation fixes and improvements.[Model]
for adding a new model or improving an existing model. Model name should appear in the title.[Frontend]
For changes on the vLLM frontend (e.g., OpenAI API server,LLM
class, etc.)[Kernel]
for changes affecting CUDA kernels or other compute kernels.[Core]
for changes in the core vLLM logic (e.g.,LLMEngine
,AsyncLLMEngine
,Scheduler
, etc.)[Hardware][Vendor]
for hardware-specific changes. Vendor name should appear in the prefix (e.g.,[Hardware][AMD]
).[Misc]
for PRs that do not fit the above categories. Please use this sparingly.Note: If the PR spans more than one category, please include all relevant prefixes.
Code Quality
The PR need to meet the following code quality standards:
format.sh
to format your code.docs/source/
if the PR modifies the user-facing behaviors of vLLM. It helps vLLM user understand and utilize the new features or changes.Notes for Large Changes
Please keep the changes as concise as possible. For major architectural changes (>500 LOC excluding kernel/data/config/test), we would expect a GitHub issue (RFC) discussing the technical design and justification. Otherwise, we will tag it with
rfc-required
and might not go through the PR.What to Expect for the Reviews
The goal of the vLLM team is to be a transparent reviewing machine. We would like to make the review process transparent and efficient and make sure no contributor feel confused or frustrated. However, the vLLM team is small, so we need to prioritize some PRs over others. Here is what you can expect from the review process:
action-required
label on the PR if there are changes required. The contributor should address the comments and ping the reviewer to re-review the PR.Thank You
Finally, thank you for taking the time to read these guidelines and for your interest in contributing to vLLM. Your contributions make vLLM a great tool for everyone!