-
Notifications
You must be signed in to change notification settings - Fork 2k
feat: RayExecutor #7240
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
Closed
Closed
feat: RayExecutor #7240
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
2003ccb
feat: Ray integration
tongyuantongyu fd171ef
Gracefully exit.
joyang-nv f560d01
fix single node disagg random failure
hchings b7d77ac
revert cpu req
hchings c05b72c
cleanup ray process rendering in process tree report
tongyuantongyu 6c689d5
Use weakref for results and make ray shared queue exit gracefully.
joyang-nv f4c4113
Use different way to get weak ref of actor handle.
joyang-nv 57892a1
Cache transceiver refactor
shuyixiong 5fd3097
Remove unused code for ray.
joyang-nv 955436f
Refine code
shuyixiong c6310d0
update run_cluster.sh for multinode disagg
hchings f2ec920
WAR ProcessGroup not pickleable.
tongyuantongyu 5004104
fix ci failure, fix abort_request()
hchings 9f2e709
Add heartbeat to prevent trtllm-serve timeout due to gloo. Fix pre-co…
hchings 115b971
ccacheTransceiver nits
tongyuantongyu 9b76654
fix build
tongyuantongyu 3abdec9
minor fix and code cleanup
hchings dc9e398
skip build mesh for single rank world
tongyuantongyu e0fd152
Warm up ray queue actors and optimize pickle out.
joyang-nv 4bb1ef8
Clean up.
joyang-nv ddde721
nanobind fix and a few cleanup
hchings d87dce3
revert working extension; some renamings.
hchings 599db47
Remove update_weights and reset_kv_cache and collective_rpc api
shuyixiong c5b5b33
Cleanup
shuyixiong 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
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
Oops, something went wrong.
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.
couldUseMPI() returns the wrong value and throws where a pure query is expected
This will break the intended backend gating and can cause spurious exceptions.
Apply this fix to make the API boolean and non-throwing; let callers decide behavior:
And add missing headers:
If you prefer to raise on misuse, add a separate ensureMPIEnabled() that throws, while couldUseMPI() remains a pure query.
📝 Committable suggestion
🤖 Prompt for AI Agents