[None][perf] Skip request broadcast when world_size is 1#13412
Merged
Conversation
Signed-off-by: yechank <[email protected]>
Collaborator
Author
|
/bot run |
Contributor
📝 WalkthroughWalkthroughAdds an early return optimization in Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
Collaborator
|
PR_Github #45364 [ run ] triggered by Bot. Commit: |
Funatiq
approved these changes
Apr 24, 2026
Collaborator
|
PR_Github #45364 [ run ] completed with state |
yufeiwu-nv
pushed a commit
to yufeiwu-nv/TensorRT-LLM
that referenced
this pull request
May 19, 2026
Signed-off-by: yechank <[email protected]>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Skip the MPI broadcast in RequestBroadcaster._broadcast_requests when world_size == 1. The broadcast call still incurs pickle serialization overhead even when there is only one rank, which is wasteful for single-GPU (especially for multimodal) runs.
The check is placed before the has_pp branch so it covers every parallelism configuration (TP / PP / CP / EP / DP).
Summary by CodeRabbit