Skip to content

Commit c93e5be

Browse files
committed
fix test_trtllm_serve_multimodal_benchmark
Signed-off-by: Xin He (SW-GPU) <[email protected]>
1 parent 5815387 commit c93e5be

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

tests/unittest/llmapi/apps/_test_trtllm_serve_multimodal_benchmark.py

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,18 @@ def vision_arena_dataset_path():
7171

7272

7373
@skip_gpu_memory_less_than_80gb
74-
@pytest.mark.parametrize("dataset_name,dataset_args", [("random_image", {
75-
"--num-images": "1",
76-
"--image-size": "512",
77-
}), ("random_image", {
78-
"--num-images": "2",
79-
"--image-size": "512",
80-
}), ("hf", {
81-
"--dataset-path": vision_arena_dataset_path(),
82-
})],
74+
@pytest.mark.parametrize("dataset_name,dataset_args",
75+
[("random_image", {
76+
"--random-num-images": "1",
77+
"--random-image-size": "512",
78+
}),
79+
("random_image", {
80+
"--random-num-images": "2",
81+
"--random-image-size": "512",
82+
}),
83+
("hf", {
84+
"--dataset-path": vision_arena_dataset_path(),
85+
})],
8386
ids=[
8487
"random_image-single_image",
8588
"random_image-dual_images",

0 commit comments

Comments
 (0)