New PR due to merge conflicts(https://github.com/openvinotoolkit/openvino/pull/22917) Updated the copyright year from 2018-2023 to 2018-2024 in all openvino files Ref. to script: CVS-101144 Command used: ```bash git grep -lz '2018-2023 Intel Corporation' | xargs -0 sed -i '' -e 's/2018-2023 Intel Corporation/2018-2024 Intel Corporation/g' ``` |
||
|---|---|---|
| .. | ||
| openvino | ||
| CMakeLists.txt | ||
| README.md | ||
| benchmark_app.py | ||
| requirements.txt | ||
| setup.py | ||
README.md
Benchmark Python Tool
This page demonstrates how to use the Benchmark Python Tool to estimate deep learning inference performance on supported devices.
NOTE: This page describes usage of the Python implementation of the Benchmark Tool. For the C++ implementation, refer to the Benchmark C++ Tool page. The Python version is recommended for benchmarking models that will be used in Python applications, and the C++ version is recommended for benchmarking models that will be used in C++ applications. Both tools have a similar command interface and backend.
For more detailed information on how this sample works, check the dedicated article
Requriements
The Python benchmark_app is automatically installed when you install OpenVINO Developer Tools using PyPI Before running benchmark_app, make sure the openvino_env virtual environment is activated, and navigate to the directory where your model is located.
The benchmarking application works with models in the OpenVINO IR (model.xml and model.bin) and ONNX (model.onnx) formats.
Make sure to convert your models if necessary.