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
5fff4406
Unverified
Commit
5fff4406
authored
Jan 01, 2026
by
Kevin McKay
Committed by
GitHub
Jan 01, 2026
Browse files
[Bugfix] Replace BaseException with specific exceptions in FLA utils (#31590)
Signed-off-by:
c0de128
<
kevin.mckay@outlook.com
>
parent
1f5b7c41
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/fla/ops/utils.py
vllm/model_executor/layers/fla/ops/utils.py
+1
-1
No files found.
vllm/model_executor/layers/fla/ops/utils.py
View file @
5fff4406
...
...
@@ -119,7 +119,7 @@ def input_guard(fn: Callable[..., torch.Tensor]) -> Callable[..., torch.Tensor]:
def
get_available_device
()
->
str
:
try
:
return
triton
.
runtime
.
driver
.
active
.
get_current_target
().
backend
except
BaseException
:
except
(
RuntimeError
,
AttributeError
)
:
return
"cpu"
...
...
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