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
f5d17400
Unverified
Commit
f5d17400
authored
Jan 18, 2026
by
Iryna Boiko
Committed by
GitHub
Jan 18, 2026
Browse files
[Bugfix] Add OOT backend option (#32471)
Signed-off-by:
Iryna Boiko
<
iboiko@habana.ai
>
parent
eebc58df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
vllm/model_executor/layers/fused_moe/oracle/unquantized.py
vllm/model_executor/layers/fused_moe/oracle/unquantized.py
+4
-0
No files found.
vllm/model_executor/layers/fused_moe/oracle/unquantized.py
View file @
f5d17400
...
...
@@ -33,6 +33,7 @@ class UnquantizedMoeBackend(Enum):
CPU
=
"CPU"
XPU
=
"XPU"
TPU
=
"TPU"
OOT
=
"OOT"
# NOTE(zyongye): Unsupported backend means backend
...
...
@@ -42,6 +43,7 @@ UNSUPPORTED_BACKEND = [
UnquantizedMoeBackend
.
CPU
,
UnquantizedMoeBackend
.
XPU
,
UnquantizedMoeBackend
.
TPU
,
UnquantizedMoeBackend
.
OOT
,
]
...
...
@@ -95,6 +97,8 @@ def select_unquantized_moe_backend(
backend
=
UnquantizedMoeBackend
.
CPU
if
current_platform
.
is_tpu
():
backend
=
UnquantizedMoeBackend
.
TPU
if
current_platform
.
is_out_of_tree
():
backend
=
UnquantizedMoeBackend
.
OOT
logger
.
info_once
(
_make_log_backend
(
backend
),
scope
=
"local"
)
return
backend
...
...
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