Files
openvino/tools/benchmark_tool/benchmark_app.py
Sergey Lyubimtsev c771b1e2e0 Merge benchmark tools dirs (#6960)
* add missed __init__.py files

* Update __init__.py

empty line

* Merge infirence_engine/tools/benchmark_tool with tools/benchmark_tool

* Update MD links

* remove benchmark_tool  from package_BOM.txt

* add tools folder to the list of Doxygen files

* fix relative paths

* Update index.md

remove extra line
2021-08-12 11:38:03 +03:00

12 lines
216 B
Python
Executable File

#!/usr/bin/python3
# Copyright (C) 2018-2021 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
import sys
from openvino.tools.benchmark.main import main
if __name__ == "__main__":
sys.exit(main() or 0)