From bc2ae5a3d6b59690b6a3312f0ed63842e8bc600b Mon Sep 17 00:00:00 2001 From: Angela Yi Date: Fri, 24 Apr 2026 17:59:20 -0700 Subject: [PATCH] [Test] Increase qwen2_vl num_logprobs to fix torch 2.12 update (#40818) Signed-off-by: Angela Yi --- tests/models/multimodal/generation/test_common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/models/multimodal/generation/test_common.py b/tests/models/multimodal/generation/test_common.py index 29680bafd50..e04d44d4be2 100644 --- a/tests/models/multimodal/generation/test_common.py +++ b/tests/models/multimodal/generation/test_common.py @@ -921,6 +921,7 @@ VLM_TEST_SETTINGS = { multi_image_prompt="Picture 1: \nPicture 2: \nDescribe these two images with one paragraph respectively.", # noqa: E501 max_model_len=4096, max_num_seqs=2, + num_logprobs=10, auto_cls=AutoModelForImageTextToText, vllm_output_post_proc=model_utils.qwen2_vllm_to_hf_output, image_size_factors=[(0.25,), (0.25, 0.25, 0.25), (0.25, 0.2, 0.15)],