Skip to content

Commit 9e6346b

Browse files
committed
Merge branch 'wangshangsam/vlm-sut-prototype' of github.com:CentML/mlperf-inference into wangshangsam/vlm-sut-prototype
2 parents 474f785 + 4fb5924 commit 9e6346b

File tree

1 file changed

+5
-2
lines changed
  • multimodal/vl2l/src/mlperf_inference_multimodal_vl2l

1 file changed

+5
-2
lines changed

multimodal/vl2l/src/mlperf_inference_multimodal_vl2l/cli.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ def to_lgtype(self) -> lg.TestSettings:
144144
settings.scenario = self.scenario.to_lgtype()
145145
settings.mode = self.mode.to_lgtype()
146146
settings.offline_expected_qps = self.offline_expected_qps
147-
settings.min_duration_ms = round(self.min_duration.total_seconds() * 1000)
147+
settings.min_duration_ms = round(
148+
self.min_duration.total_seconds() * 1000)
148149
settings.use_token_latencies = self.use_token_latencies
149150
return settings
150151

@@ -229,7 +230,9 @@ def main(
229230
logger.info("Running VL2L benchmark with settings: {}", settings)
230231
logger.info("Running VL2L benchmark with model: {}", model)
231232
logger.info("Running VL2L benchmark with dataset: {}", dataset)
232-
logger.info("Running VL2L benchmark with OpenAI API endpoint: {}", endpoint)
233+
logger.info(
234+
"Running VL2L benchmark with OpenAI API endpoint: {}",
235+
endpoint)
233236
logger.info("Running VL2L benchmark with random seed: {}", random_seed)
234237
lg_settings = settings.to_lgtype()
235238
task = ShopifyGlobalCatalogue(

0 commit comments

Comments
 (0)