其他分享
首页 > 其他分享> > 服务器配置相同服务性能不一样排查

服务器配置相同服务性能不一样排查

作者:互联网

背景

排查

解决

在慢的机器上运行 pip3 list 发现有同时安装 onnxruntime 和 onnxruntime-gpu, 于是测试

$ pip3 list|grep onnxruntime
onnxruntime               1.4.0
onnxruntime-gpu           1.4.0
$ python3
>>>import onnxruntime
>>>onnxruntime.get_device(); 
'CPU'

终于找到原因了,就是因为onnxruntime全部是在CPU上计算的,导致服务器的CPU利用率过高,GPU反而没有怎么利用,于是卸载CPU版本 pip3 uninstall onnxruntime, 然后重启服务,人脸识别模型的服务响应速度由800毫秒提升到250毫秒

原因分析

TODO,我不是搞算法和运维的,求大神解答

标签:机器,pip3,onnxruntime,性能,list,排查,gpu,服务器,CPU
来源: https://blog.csdn.net/liufang1991/article/details/119005124