Files
openvino/tools/benchmark_tool/benchmark_app.py
2022-01-19 01:07:49 +03:00

12 lines
216 B
Python
Executable File

#!/usr/bin/python3
# Copyright (C) 2018-2022 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)