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
vllm_cscc
Commits
40329496
Unverified
Commit
40329496
authored
Sep 10, 2025
by
Ming Yang
Committed by
GitHub
Sep 10, 2025
Browse files
[Bugfix] Fix DeepEP config for DP4TP4 (#23619)
Signed-off-by:
Ming Yang
<
minos.future@gmail.com
>
parent
08abfa78
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
vllm/model_executor/layers/fused_moe/deepep_ht_prepare_finalize.py
...l_executor/layers/fused_moe/deepep_ht_prepare_finalize.py
+4
-4
No files found.
vllm/model_executor/layers/fused_moe/deepep_ht_prepare_finalize.py
View file @
40329496
...
@@ -49,14 +49,14 @@ class DeepEPHTPrepareAndFinalize(mk.FusedMoEPrepareAndFinalize):
...
@@ -49,14 +49,14 @@ class DeepEPHTPrepareAndFinalize(mk.FusedMoEPrepareAndFinalize):
return
torch
.
int64
return
torch
.
int64
def
_get_dispatch_config
(
self
)
->
Optional
[
deep_ep
.
Config
]:
def
_get_dispatch_config
(
self
)
->
Optional
[
deep_ep
.
Config
]:
if
self
.
dp_size
not
in
self
.
available_rank_configs
:
if
self
.
num_dispatchers_
not
in
self
.
available_rank_configs
:
return
None
return
None
return
deep_ep
.
Buffer
.
get_dispatch_config
(
self
.
dp_size
)
return
deep_ep
.
Buffer
.
get_dispatch_config
(
self
.
num_dispatchers_
)
def
_get_combine_config
(
self
)
->
Optional
[
deep_ep
.
Config
]:
def
_get_combine_config
(
self
)
->
Optional
[
deep_ep
.
Config
]:
if
self
.
dp_size
not
in
self
.
available_rank_configs
:
if
self
.
num_dispatchers_
not
in
self
.
available_rank_configs
:
return
None
return
None
return
deep_ep
.
Buffer
.
get_combine_config
(
self
.
dp_size
)
return
deep_ep
.
Buffer
.
get_combine_config
(
self
.
num_dispatchers_
)
def
_do_dispatch
(
def
_do_dispatch
(
self
,
self
,
...
...
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