feat(nccl): add point-to-point communication - #58
Merged
Merged
Conversation
This was referenced Aug 11, 2026
voltjia
force-pushed
the
fix/bridge-header-dependencies
branch
from
September 7, 2026 02:49
65b597b to
18a41d0
Compare
voltjia
force-pushed
the
feat/nccl-point-to-point
branch
from
September 7, 2026 03:41
8002b59 to
8ed1772
Compare
53 tasks
Ziminli
force-pushed
the
fix/bridge-header-dependencies
branch
from
September 8, 2026 07:25
18a41d0 to
7bb2895
Compare
Ziminli
force-pushed
the
feat/nccl-point-to-point
branch
from
September 11, 2026 03:28
8ed1772 to
1878506
Compare
- remove communicator redispatch from the shared operation layer - align CCL `Send`/`Recv` implementations with the existing collective style - add a hybrid example for global-rank `Send`/`Recv` across MPI-launched processes
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.
Summary
Add NVIDIA NCCL implementations for
infinicclSendandinfinicclRecv. Examples now cover both single-node thread-per-GPU transfers and MPI-launched global-rank transfers. The branch is stacked on #57.Changes
NCCL point-to-point Support
Send/Recvproviders.ncclSendandncclRecv.Safe communicator dispatch
kNotSupportedinstead of entering an unavailable template dispatch and aborting.Examples
examples/ccl/send_recv.cc, a deterministic single-node dual-GPU example using one worker thread per GPU.examples/ccl_mpi_hybrid/send_recv.cc, which performs send/recv between global MPI-launched ranks.Platform and Backend Affected
Platform
Backend
Performance Impact
N/A. No performance claim is made; the change adds a previously unavailable NCCL operation.
Known Issues & Future Work
N/A.
Test Results
Test Involved Platform
Test Involved Backend
NVIDIA NCCL + OMPI (2 Nodes):
ccl_mpi_hybrid_all_reduce.log
ccl_mpi_hybrid_send_recv.log
NVIDIA NCCL (Single Node):
ccl_all_reduce.log
ccl_send_recv.log
Iluvatar NCCL + OMPI (Single Node):
ccl_mpi_hybrid_all_reduce.log
ccl_mpi_hybrid_send_recv.log
HYGON RCCL + OMPI (2 Nodes):
ccl_mpi_hybrid_all_reduce.log
ccl_mpi_hybrid_send_recv.log
Checklist
Title, Branch, and Commits
<type>/xxx-yyyy-zzzz.master.fixup!/squash!/wipcommits remain.Scope and Design
Send/Recvbehavior is intentional and covered by examples and tests.General Code Hygiene
C++ Specific
Python Specific
N/A: No Python files are changed by this PR.
Testing
Build, CI, and Tooling
Documentation
Security and Safety