-
Notifications
You must be signed in to change notification settings - Fork 231
RPC support for OmniDiffusion #371
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
Merged
+168
−31
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
0835c74
RPC for diffusion
knlnguyen1802 854620c
Update scheduler
knlnguyen1802 9eb3db7
Do RPC for diffusion
knlnguyen1802 86e3319
Clean code
knlnguyen1802 971add7
Fix pre-commit
knlnguyen1802 98c6344
Fix docs and remove deprecated code
knlnguyen1802 23e6c3e
Fix pre-commit
knlnguyen1802 e5ae766
Recover docs
knlnguyen1802 2b169ed
Fix pre-commit
knlnguyen1802 7c6d3d4
Add e2e test for rpc
knlnguyen1802 2a42041
Fix pre-commit
knlnguyen1802 b2f3dde
Resolve conflict
knlnguyen1802 7550475
Remove cloudpickle
knlnguyen1802 c3dff61
Delete tests/e2e/test_rpc_collective.py
ZJY0516 b9d74f3
Merge branch 'main' into rpc_diffusion
ZJY0516 b99dca4
Merge branch 'main' into rpc_diffusion
ZJY0516 a86979f
Enable execution of RPC requests on all ranks
ZJY0516 add09c2
same
ZJY0516 a372dfc
fix ci
ZJY0516 42a6fc1
fix ci
ZJY0516 515b2bd
fix ci
ZJY0516 e79cb0d
fix ci
ZJY0516 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back 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.
I think we should redesign this, because it has become more complex.
we can address the redesign in a separate, follow-up task if you don't have time.
here is a good example of
worker_busy_loop: https://github.com/vllm-project/vllm/blob/c02a2705f9ceeb00b5d32453621f997b2ceafbea/vllm/v1/executor/multiproc_executor.py#L806There 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.
Agree with it, the redesign is WIP and will need a more structure RFC.
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.
Just confirming — is this already WIP?
Uh oh!
There was an error while loading. Please reload this page.
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.
This PR is not WIP. But the redesign as you said above is on working
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.
@ZJY0516 It's ready now. Could you take a look again thanks ?