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
94866d7c
Unverified
Commit
94866d7c
authored
Sep 05, 2025
by
Jee Jee Li
Committed by
GitHub
Sep 04, 2025
Browse files
[Misc] Slight improve deepgemm print (#24085)
Signed-off-by:
Jee Jee Li
<
pandaleefree@gmail.com
>
parent
83609ca9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
vllm/model_executor/layers/fused_moe/deep_gemm_moe.py
vllm/model_executor/layers/fused_moe/deep_gemm_moe.py
+3
-2
No files found.
vllm/model_executor/layers/fused_moe/deep_gemm_moe.py
View file @
94866d7c
...
...
@@ -57,13 +57,14 @@ def _valid_deep_gemm(hidden_states: torch.Tensor, w1: torch.Tensor,
if
not
_valid_deep_gemm_shape
(
M
,
N
,
K
):
logger
.
debug_once
(
"DeepGemm disabled due to unaligned problem size. "
"M: %s, N: %s, K: %s. M should >=
align size
"
"and N and K must be multiples of %s."
"M: %s, N: %s, K: %s. M should >=
%s
"
"and N and K must be multiples of %s.
"
"This is not an error and we will fall back to triton."
,
M
,
N
,
K
,
align
,
align
,
)
return
False
elif
N
<=
512
:
...
...
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