-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
[Hardware][Gaudi] Add multiprocessing HPU executor #11030
base: main
Are you sure you want to change the base?
[Hardware][Gaudi] Add multiprocessing HPU executor #11030
Conversation
Signed-off-by: Konrad Zawora <[email protected]>
👋 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:
🚀 |
is there any limitation of using |
…tream_mp_executor
Signed-off-by: Konrad Zawora <[email protected]>
aa46efe
to
c70ece6
Compare
There is no issue with starting the process with both |
This PR adds support for single-node tensor parallelism on HPU using multiprocessing instead of ray. Following other backends' convention, if distributed executor is needed,
mp
backend is selected by default, whileray
still remains an option when--distributed-executor-backend ray
is provided.Requires fixes from #11028 to work, although it is functionally unrelated to that PR.