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
ff2168bc
Unverified
Commit
ff2168bc
authored
Dec 19, 2025
by
Lucas Wilkinson
Committed by
GitHub
Dec 20, 2025
Browse files
[CI] FIx `fixture 'siglip_attention_config' not found` (#31053)
Signed-off-by:
Lucas Wilkinson
<
lwilkins@redhat.com
>
parent
0be14952
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
tests/models/multimodal/pooling/conftest.py
tests/models/multimodal/pooling/conftest.py
+18
-0
No files found.
tests/models/multimodal/pooling/conftest.py
0 → 100644
View file @
ff2168bc
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
"""Pytest configuration for vLLM pooling tests."""
import
pytest
from
vllm.platforms
import
current_platform
@
pytest
.
fixture
def
siglip_attention_config
():
"""Return attention config for SigLIP tests on ROCm.
On ROCm, SigLIP tests require FLEX_ATTENTION backend.
"""
if
current_platform
.
is_rocm
():
return
{
"backend"
:
"FLEX_ATTENTION"
}
return
None
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