使用命令安装了OpenVINO 开发工具后,即获得benchmark_tool
*benchmark_tool*pip install openvino-dev
常用指令格式:
benchmark_app -m <model> -i <input> -d CPU
其中:
- m:指定模型路径,必须项
- i:指定包含测试图片的文件夹,可省略
- d:指定设备
benchmark_app的源代码是异步多线程的实现方式,可以把集成显卡的使用率基本拉满
Iris Xe集显使用率拉满benchmark_app.py
源代码:https://github.com/openvinotoolkit/openvino/tree/master/tools/benchmark_tool
网友评论