-
Notifications
You must be signed in to change notification settings - Fork 682
Integrate deep-ep nccl backend #4477
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
Open
irexyc
wants to merge
8
commits into
InternLM:main
Choose a base branch
from
irexyc:moe-2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d9817ba
integrate deep-ep nccl backend (intranode + low_latency kernels
irexyc 2769bd0
internode normal kernels
irexyc 64acac6
fix internode
irexyc c3bb4f3
update build
irexyc e83ab90
update build
irexyc 03f6f09
fix windows build
irexyc 70fe0e0
fix windows build
irexyc acc13a9
move deepep to 3rdparty
irexyc 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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,9 +9,58 @@ | |
| #include <cuda_runtime.h> | ||
|
|
||
| #include "src/turbomind/comm/host_comm.h" | ||
| #include "src/turbomind/core/buffer.h" | ||
| #include "src/turbomind/core/tensor.h" | ||
|
|
||
| namespace turbomind::comm { | ||
|
|
||
| struct EpConfig { | ||
| int num_nodes; | ||
| int num_experts; | ||
| int hidden; | ||
| int ll_max_tokens_per_rank; | ||
| }; | ||
|
|
||
| enum EpMode | ||
| { | ||
| kNull, | ||
| kHighThroughput, | ||
| kLowLatency, | ||
| }; | ||
|
|
||
| struct EpDispatchInput { | ||
| EpMode& mode; | ||
| core::Tensor& x; | ||
| core::Tensor_<float>& topk_weights; | ||
| core::Tensor_<int64_t>& topk_idx; | ||
| }; | ||
|
|
||
| struct EpDispatchOutput { | ||
| core::Tensor out_x; | ||
| core::Tensor out_topk_weights; | ||
| core::Buffer_<int>& f2n; | ||
| core::Buffer_<int>& f2E; | ||
| core::Buffer_<int>& en2f; | ||
| core::Buffer_<int>& offsets; | ||
|
|
||
| std::vector<core::Tensor> handle; | ||
|
|
||
| int out_token_num; | ||
| int out_expert_token_num; | ||
| }; | ||
|
|
||
| struct EpCombineInput { | ||
| EpMode& mode; | ||
| core::Tensor& x; | ||
| std::vector<core::Tensor>& handle; | ||
| std::optional<core::Tensor> topk_weights; | ||
| std::optional<core::Tensor> topk_idx; | ||
| }; | ||
|
Comment on lines
+52
to
+58
|
||
|
|
||
| struct EpCombineOutput { | ||
| core::Tensor out_x; | ||
| }; | ||
|
|
||
| enum QueryAttr | ||
| { | ||
| kHasAllGather2D | ||
|
|
@@ -117,6 +166,41 @@ class DeviceCommImpl { | |
| { | ||
| throw std::runtime_error("not implemented"); | ||
| } | ||
|
|
||
| virtual void ReduceScatterV(const void* sendbuff, // | ||
| void* recvbuff, | ||
| const size_t* counts, | ||
| DataType type, | ||
| int group, | ||
| cudaStream_t stream) | ||
| { | ||
| throw std::runtime_error("not implemented"); | ||
| } | ||
|
|
||
| virtual void AllGatherV(const void* sendbuff, // | ||
| void* recvbuff, | ||
| const size_t* counts, | ||
| DataType type, | ||
| int group, | ||
| cudaStream_t stream) | ||
| { | ||
| throw std::runtime_error("not implemented"); | ||
| } | ||
|
|
||
| virtual void InitializeEp(const EpConfig& config) | ||
| { | ||
| throw std::runtime_error("ep not implemented"); | ||
| } | ||
|
|
||
| virtual void Dispatch(const EpDispatchInput& input, EpDispatchOutput& output, int group) | ||
| { | ||
| throw std::runtime_error("not implemented"); | ||
| } | ||
|
|
||
| virtual void Combine(const EpCombineInput& input, EpCombineOutput& output, int group) | ||
| { | ||
| throw std::runtime_error("not implemented"); | ||
| } | ||
| }; | ||
|
|
||
| class DeviceComm { | ||
|
|
||
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.
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.
EP path can compute
attn_dp_size = overlap // cfg.nnodes, which becomes 0 for common multi-node cases (e.g.,overlap==1andnnodes>1), violating later invariants and producing invalid parallel config. Sincedevice_numalready accounts fornnodes, avoid dividingoverlapbynnodeshere (or otherwise ensureattn_dp_size>=1with a correct derivation).