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
4ad7a1fe
Commit
4ad7a1fe
authored
Mar 10, 2026
by
lixh6
Browse files
Fix:修复调用Triton MoE gemm时缺失的参数,对齐接口
parent
18459e7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
vllm/model_executor/layers/fused_moe/fused_moe.py
vllm/model_executor/layers/fused_moe/fused_moe.py
+3
-1
No files found.
vllm/model_executor/layers/fused_moe/fused_moe.py
View file @
4ad7a1fe
...
...
@@ -9,7 +9,7 @@ import math
from
collections.abc
import
Callable
from
typing
import
Any
from
typing
import
Any
,
Callable
,
Dict
,
List
,
Optional
import
torch
...
...
@@ -1613,6 +1613,8 @@ def fused_experts(
quant_config
:
FusedMoEQuantConfig
|
None
=
None
,
use_nn_moe
:
bool
|
None
=
False
,
use_fused_gate
:
bool
|
None
=
False
,
i_q
:
Optional
[
torch
.
Tensor
]
=
None
,
i_s
:
Optional
[
torch
.
Tensor
]
=
None
,
**
_
)
->
torch
.
Tensor
:
if
quant_config
is
None
:
quant_config
=
FUSED_MOE_UNQUANTIZED_CONFIG
...
...
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