File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
multimodal/qwen3-vl/src/mlperf_inf_mm_q3vl Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,17 @@ def run_benchmark(
1616 random_seed : int ,
1717) -> None :
1818 """Run the Qwen3-VL (Q3VL) benchmark."""
19- logger .info ("Running Qwen3-VL (Q3VL) benchmark with settings: {}" , settings )
19+ logger .info (
20+ "Running Qwen3-VL (Q3VL) benchmark with settings: {}" ,
21+ settings )
2022 logger .info ("Running Qwen3-VL (Q3VL) benchmark with dataset: {}" , dataset )
2123 logger .info (
2224 "Running Qwen3-VL (Q3VL) benchmark with OpenAI API endpoint: {}" ,
2325 endpoint ,
2426 )
25- logger .info ("Running Qwen3-VL (Q3VL) benchmark with random seed: {}" , random_seed )
27+ logger .info (
28+ "Running Qwen3-VL (Q3VL) benchmark with random seed: {}" ,
29+ random_seed )
2630 test_settings , log_settings = settings .to_lgtype ()
2731 task = ShopifyGlobalCatalogue (
2832 dataset = dataset ,
@@ -37,4 +41,3 @@ def run_benchmark(
3741 logger .info ("The Qwen3-VL (Q3VL) benchmark with LoadGen completed." )
3842 lg .DestroyQSL (qsl )
3943 lg .DestroySUT (sut )
40-
Original file line number Diff line number Diff line change 3131def _load_benchmark_plugins () -> None :
3232 """Load and register benchmark plugins from third-party packages."""
3333 # Discover plugins from the entry point group
34- discovered_plugins = entry_points (group = "mlperf_inf_mm_q3vl.benchmark_plugins" )
34+ discovered_plugins = entry_points (
35+ group = "mlperf_inf_mm_q3vl.benchmark_plugins" )
3536
3637 for entry_point in discovered_plugins :
3738 try :
You can’t perform that action at this time.
0 commit comments