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
b6a136b5
Unverified
Commit
b6a136b5
authored
Sep 23, 2025
by
Isotr0py
Committed by
GitHub
Sep 23, 2025
Browse files
[CI/Build] Fix disabled v1 attention backend selection test (#25471)
Signed-off-by:
Isotr0py
<
mozf@mail2.sysu.edu.cn
>
parent
0d9fe260
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
tests/kernels/attention/test_attention_selector.py
tests/kernels/attention/test_attention_selector.py
+1
-2
No files found.
tests/kernels/attention/test_attention_selector.py
View file @
b6a136b5
...
@@ -67,7 +67,6 @@ def generate_params():
...
@@ -67,7 +67,6 @@ def generate_params():
return
params
return
params
@
pytest
.
mark
.
skip
(
reason
=
"Skipped for now. Should be revisited."
)
@
pytest
.
mark
.
parametrize
(
"device, name, use_mla, block_size"
,
@
pytest
.
mark
.
parametrize
(
"device, name, use_mla, block_size"
,
generate_params
())
generate_params
())
def
test_env
(
def
test_env
(
...
@@ -189,7 +188,7 @@ def test_env(
...
@@ -189,7 +188,7 @@ def test_env(
# FlashMLA only supports block_size == 64
# FlashMLA only supports block_size == 64
pytest
.
skip
(
"FlashMLA only supports block_size 64"
)
pytest
.
skip
(
"FlashMLA only supports block_size 64"
)
else
:
else
:
from
vllm.attention.backends.flashmla
import
(
from
vllm.
v1.
attention.backends.
mla.
flashmla
import
(
# noqa: E501
is_flashmla_supported
)
is_flashmla_supported
)
is_supported
,
_
=
is_flashmla_supported
()
is_supported
,
_
=
is_flashmla_supported
()
if
not
is_supported
:
if
not
is_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