Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
DeepEP
Commits
680e424b
Commit
680e424b
authored
Mar 05, 2025
by
Chenggang Zhao
Browse files
Bugs fixed
parent
592296cd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
README.md
README.md
+1
-0
csrc/kernels/internode.cu
csrc/kernels/internode.cu
+1
-2
No files found.
README.md
View file @
680e424b
...
...
@@ -282,6 +282,7 @@ For two micro-batch overlapping, you can refer to the following figure. With our
## Roadmap
-
[ ] AR support (releasing soon)
-
[ ] A100 support (intranode only)
-
[ ] Support BF16 for the low-latency dispatch kernel
-
[ ] Support NVLink protocol for intranode low-latency kernels
...
...
csrc/kernels/internode.cu
View file @
680e424b
...
...
@@ -383,8 +383,7 @@ notify_dispatch(const int* num_tokens_per_rank, int* moe_recv_counter_mapped, in
// Calculate prefix sum
__syncthreads
();
EP_STATIC_ASSERT
(
kNumRDMARanks
<=
32
,
"Invalid number of RDMA ranks"
);
if
(
thread_id
<
kNumRDMARanks
)
{
if
(
thread_id
==
0
)
{
auto
prefix_row
=
rdma_channel_prefix_matrix
+
dst_rdma_rank
*
num_channels
;
#pragma unroll
for
(
int
i
=
1
;
i
<
num_channels
;
++
i
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment