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
6dec9f61
Unverified
Commit
6dec9f61
authored
Nov 10, 2025
by
Lucas Wilkinson
Committed by
GitHub
Nov 10, 2025
Browse files
[BugFix] Fix DeepGEMM over-allocating workspace (#28254)
Signed-off-by:
Lucas Wilkinson
<
lwilkins@redhat.com
>
parent
bf6a3d0f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/model_executor/layers/fused_moe/deep_gemm_moe.py
vllm/model_executor/layers/fused_moe/deep_gemm_moe.py
+1
-1
No files found.
vllm/model_executor/layers/fused_moe/deep_gemm_moe.py
View file @
6dec9f61
...
...
@@ -215,7 +215,7 @@ class DeepGemmExperts(mk.FusedMoEPermuteExpertsUnpermute):
)
assert
M_sum
%
block_m
==
0
workspace1
=
(
M_sum
,
max
(
N
,
K
)
)
workspace1
=
(
M_sum
,
N
)
workspace2
=
(
M_sum
,
max
(
N
//
2
,
K
))
output
=
(
M
,
K
)
return
(
workspace1
,
workspace2
,
output
)
...
...
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