* Updated copyright headers
* Revert "Fixed linker warnings in docs snippets on Windows (#15119)"
This reverts commit 372699ec49.
12 lines
216 B
Python
Executable File
12 lines
216 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
# Copyright (C) 2018-2023 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)
|