* 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
12 lines
216 B
Python
Executable File
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)
|