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
690f948e
Unverified
Commit
690f948e
authored
Sep 23, 2025
by
Gregory Shtrasberg
Committed by
GitHub
Sep 23, 2025
Browse files
[Bugfix] Fix for the import error from #24588 (#25481)
Signed-off-by:
Gregory Shtrasberg
<
Gregory.Shtrasberg@amd.com
>
parent
08275ec0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/model_executor/layers/fused_moe/gpt_oss_triton_kernels_moe.py
...l_executor/layers/fused_moe/gpt_oss_triton_kernels_moe.py
+1
-1
No files found.
vllm/model_executor/layers/fused_moe/gpt_oss_triton_kernels_moe.py
View file @
690f948e
...
@@ -23,7 +23,7 @@ if has_triton_kernels():
...
@@ -23,7 +23,7 @@ if has_triton_kernels():
from
triton_kernels.routing
import
(
RoutingData
,
routing
,
from
triton_kernels.routing
import
(
RoutingData
,
routing
,
routing_from_bitmatrix
)
routing_from_bitmatrix
)
from
triton_kernels.tensor
import
Bitmatrix
from
triton_kernels.tensor
import
Bitmatrix
except
(
ModuleNotFoundError
,
Attribute
Error
)
as
e
:
except
(
AttributeError
,
Import
Error
)
as
e
:
logger
.
error
(
logger
.
error
(
"Failed to import Triton kernels. Please make sure your triton "
"Failed to import Triton kernels. Please make sure your triton "
"version is compatible. Error: %s"
,
e
)
"version is compatible. Error: %s"
,
e
)
...
...
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