Skip to content

Commit

Permalink
LLM benchmark: Pass config as config not **config (#1360)
Browse files Browse the repository at this point in the history
CVS-159167
  • Loading branch information
dmatveev authored Dec 12, 2024
1 parent 61cd7a9 commit c244054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/llm_bench/llm_bench_utils/ov_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def create_genai_text_gen_model(model_path, device, ov_config, **kwargs):
ov_config['adapters'] = adapter_config

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

Expand Down

0 comments on commit c244054

Please sign in to comment.