Skip to content

Commit 6dd564b

Browse files
[Automated Commit] Format Codebase
1 parent 0c5452b commit 6dd564b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

multimodal/qwen3-vl/src/mlperf_inf_mm_q3vl/benchmark.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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-

multimodal/qwen3-vl/src/mlperf_inf_mm_q3vl/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
def _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:

0 commit comments

Comments
 (0)