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
3a30eaa1
Unverified
Commit
3a30eaa1
authored
Apr 20, 2026
by
Hashem Hashemi
Committed by
GitHub
Apr 20, 2026
Browse files
Properly enable wvSplitK fp8 path for RDNA (#37712)
Signed-off-by:
Hashem Hashemi
<
hashem.hashemi@amd.com
>
parent
fb5635d3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vllm/model_executor/kernels/linear/scaled_mm/rocm.py
vllm/model_executor/kernels/linear/scaled_mm/rocm.py
+3
-3
No files found.
vllm/model_executor/kernels/linear/scaled_mm/rocm.py
View file @
3a30eaa1
...
...
@@ -79,10 +79,10 @@ class ROCmFP8ScaledMMLinearKernel(FP8ScaledMMLinearKernel):
if
not
current_platform
.
is_rocm
():
return
False
,
"requires ROCm."
from
vllm.platforms.rocm
import
on_mi3xx
from
vllm.platforms.rocm
import
on_gfx12x
,
on_mi3xx
if
not
on_mi3xx
():
return
False
,
"requires MI3xx
.
"
if
not
(
on_mi3xx
()
or
on_gfx12x
())
:
return
False
,
"requires MI3xx
or gfx12x
"
if
not
envs
.
VLLM_ROCM_USE_SKINNY_GEMM
:
return
False
,
"requires VLLM_ROCM_USE_SKINNY_GEMM to be enabled."
...
...
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