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
ade81f17
Unverified
Commit
ade81f17
authored
Feb 26, 2026
by
Kevin McKay
Committed by
GitHub
Feb 26, 2026
Browse files
[Bugfix][Hardware][AMD] Gate FP4 ops on gfx950 to prevent MI300X crash (#35250)
Signed-off-by:
c0de128
<
kevin.mckay@outlook.com
>
parent
6042e66c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
vllm/_aiter_ops.py
vllm/_aiter_ops.py
+6
-2
No files found.
vllm/_aiter_ops.py
View file @
ade81f17
...
@@ -1052,12 +1052,16 @@ class rocm_aiter_ops:
...
@@ -1052,12 +1052,16 @@ class rocm_aiter_ops:
@
classmethod
@
classmethod
@
if_aiter_supported
@
if_aiter_supported
def
is_fp4bmm_enabled
(
cls
)
->
bool
:
def
is_fp4bmm_enabled
(
cls
)
->
bool
:
return
cls
.
_AITER_ENABLED
and
cls
.
_FP4BMM_ENABLED
from
vllm.platforms.rocm
import
on_gfx950
return
cls
.
_AITER_ENABLED
and
cls
.
_FP4BMM_ENABLED
and
on_gfx950
()
@
classmethod
@
classmethod
@
if_aiter_supported
@
if_aiter_supported
def
is_asm_fp4_gemm_dynamic_quant_enabled
(
cls
)
->
bool
:
def
is_asm_fp4_gemm_dynamic_quant_enabled
(
cls
)
->
bool
:
return
cls
.
_AITER_ENABLED
and
cls
.
_FP4_GEMM_DYNAMIC_QUANT_ASM
from
vllm.platforms.rocm
import
on_gfx950
return
cls
.
_AITER_ENABLED
and
cls
.
_FP4_GEMM_DYNAMIC_QUANT_ASM
and
on_gfx950
()
@
classmethod
@
classmethod
@
if_aiter_supported
@
if_aiter_supported
...
...
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