From cef65f0715927d5a5137c34f9a95d6aa5be26cc2 Mon Sep 17 00:00:00 2001 From: Andreas Karatzas Date: Tue, 17 Feb 2026 21:59:53 -0600 Subject: [PATCH] [ROCm][CI] Removed hard-coded attn backend requirement for Qwen VL (#34753) Signed-off-by: Andreas Karatzas --- tests/models/multimodal/generation/test_common.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/models/multimodal/generation/test_common.py b/tests/models/multimodal/generation/test_common.py index 2db9c531d..c4b82b93e 100644 --- a/tests/models/multimodal/generation/test_common.py +++ b/tests/models/multimodal/generation/test_common.py @@ -169,13 +169,6 @@ VLM_TEST_SETTINGS = { auto_cls=AutoModelForImageTextToText, vllm_output_post_proc=model_utils.qwen2_vllm_to_hf_output, patch_hf_runner=model_utils.qwen3_vl_patch_hf_runner, - vllm_runner_kwargs={ - "attention_config": { - "backend": "ROCM_AITER_FA", - }, - } - if current_platform.is_rocm() - else None, image_size_factors=[(0.25,), (0.25, 0.25, 0.25), (0.25, 0.2, 0.15)], marks=[ pytest.mark.core_model,