Skip to content

Commit c244054

Browse files
authored
LLM benchmark: Pass config as config not **config (#1360)
CVS-159167
1 parent 61cd7a9 commit c244054

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/llm_bench/llm_bench_utils/ov_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def create_genai_text_gen_model(model_path, device, ov_config, **kwargs):
256256
ov_config['adapters'] = adapter_config
257257

258258
start = time.perf_counter()
259-
llm_pipe = openvino_genai.LLMPipeline(model_path, device.upper(), **ov_config)
259+
llm_pipe = openvino_genai.LLMPipeline(model_path, device.upper(), ov_config)
260260
end = time.perf_counter()
261261
log.info(f'Pipeline initialization time: {end - start:.2f}s')
262262

0 commit comments

Comments
 (0)