Skip to content

Commit

Permalink
Update tools/llm_bench/llm_bench_utils/ov_utils.py
Browse files Browse the repository at this point in the history
Co-authored-by: Ekaterina Aidova <ekaterina.aidova@intel.com>
  • Loading branch information
helena-intel and eaidova authored Jan 17, 2025
1 parent 0113082 commit a567624
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/llm_bench/llm_bench_utils/ov_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
DEFAULT_MODEL_CLASSES,
IMAGE_GEN_CLS
)
import openvino.opset13 as opset
try:
import openvino.opset13 as opset
except ImportError:
import openvino.runtime.opset13 as opset
from transformers import pipeline
import openvino_genai as ov_genai
import queue
Expand Down

0 comments on commit a567624

Please sign in to comment.