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
84f6cd74
Unverified
Commit
84f6cd74
authored
Dec 31, 2025
by
Qiu
Committed by
GitHub
Dec 30, 2025
Browse files
[Mics] add pcp basic support to MoE model (#31003)
parent
ecd49ce7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
vllm/model_executor/layers/fused_moe/config.py
vllm/model_executor/layers/fused_moe/config.py
+8
-0
No files found.
vllm/model_executor/layers/fused_moe/config.py
View file @
84f6cd74
...
@@ -1027,6 +1027,10 @@ class FusedMoEConfig:
...
@@ -1027,6 +1027,10 @@ class FusedMoEConfig:
def
dp_size
(
self
):
def
dp_size
(
self
):
return
self
.
moe_parallel_config
.
dp_size
return
self
.
moe_parallel_config
.
dp_size
@
property
def
pcp_size
(
self
):
return
self
.
moe_parallel_config
.
pcp_size
@
property
@
property
def
ep_size
(
self
):
def
ep_size
(
self
):
return
self
.
moe_parallel_config
.
ep_size
return
self
.
moe_parallel_config
.
ep_size
...
@@ -1039,6 +1043,10 @@ class FusedMoEConfig:
...
@@ -1039,6 +1043,10 @@ class FusedMoEConfig:
def
dp_rank
(
self
):
def
dp_rank
(
self
):
return
self
.
moe_parallel_config
.
dp_rank
return
self
.
moe_parallel_config
.
dp_rank
@
property
def
pcp_rank
(
self
):
return
self
.
moe_parallel_config
.
pcp_rank
@
property
@
property
def
ep_rank
(
self
):
def
ep_rank
(
self
):
return
self
.
moe_parallel_config
.
ep_rank
return
self
.
moe_parallel_config
.
ep_rank
...
...
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