TensortRT – 转换模型出现Could not locate zlibwapi.dll. Please make sure it is in your library path!错误
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:TensortRT – 转换模型出现Could not locate zlibwapi.dll. Please make sure it is in your library path!错误
原文链接:https://www.stubbornhuang.com/2429/
发布于:2022年12月01日 9:16:25
修改于:2022年12月01日 9:16:25
1 TensortRT转换模型出现Could not locate zlibwapi.dll. Please make sure it is in your library path!错误
1.1 问题
今天在使用TensorRT转换onnx模型时出现了以下错误
[12/01/2022-09:03:28] [I] [TRT] Local timing cache in use. Profiling results in this builder pass will not be stored.
Could not locate zlibwapi.dll. Please make sure it is in your library path!
1.2 解决方案
查了一下,zlibwapi.dll
是压缩解压缩库Zlib
的windows上的dll,根据错误提示是没有找到这个库的dll,所以我们只需要下载Zlib的库放到TensorRT的bin目录下即可。
我们进入Zlib
的官网:http://www.winimage.com/zLibDll/,
参考上图,根据自己的系统版本是32位还是64位下载预编译好的windows库,然后解压缩,将其中的zlibwapi.dll
拷贝到TensorRT的bin目录下,重新执行模型转换即可。
当前分类随机文章推荐
- TensorRT - 喜大普奔,TensorRT8.2 EA起开始支持Einsum爱因斯坦求和算子 阅读1704次,点赞0次
- TensorRT - Invalid Node - TopK,This version of TensorRT only supports input K as an initializer 阅读216次,点赞0次
- TensorRT - 基于TensorRT的多线程并发推理方案 阅读404次,点赞2次
- TensorRT - 扩展TensorRT C++API的模型输入维度,增加Dims5,Dims6,Dims7,Dims8 阅读1809次,点赞0次
- TensorRT - 解决INVALID_ARGUMENT: getPluginCreator could not find plugin ScatterND version 1,TensorRT找不到ScatterND插件的问题 阅读3917次,点赞0次
- TensorRT - TensorRT was linked against cuBLAS/cuBLAS LT 11.6.1 but loaded cuBLAS/cuBLAS LT 11.5.4错误提示 阅读172次,点赞0次
- TensorRT - 安装TensorRT工具Polygraphy 阅读4260次,点赞0次
- TensortRT - 转换模型出现Could not locate zlibwapi.dll. Please make sure it is in your library path!错误 阅读633次,点赞0次
- TensorRT - 使用C++ SDK出现无法解析的外部符号 "class sample::Logger sample::gLogger"错误 阅读381次,点赞0次
- TensorRT - 使用Polygraphy工具比较onnx模型和TensorRT模型的推理结果是否一致 阅读487次,点赞1次
全站随机文章推荐
- Pytorch - 用Pytorch实现ResNet 阅读501次,点赞0次
- 资源分享 - Ray Tracing from the Ground Up 英文高清PDF下载 阅读1768次,点赞0次
- 资源下载 - 地球编年史1-7本高清带书签PDF下载 阅读14915次,点赞21次
- 资源分享 - Introduction to 3D Game Programming with DirectX 10 英文PDF下载 阅读890次,点赞1次
- C++STL容器 - std::vector构造方式与分配值方式总结 阅读843次,点赞0次
- 资源分享 - PHP与MySQL程序设计(第3版) 中文 PDF下载 阅读2116次,点赞0次
- Windows 批处理文件bat执行完自动退出cmd黑窗口 阅读4963次,点赞0次
- WordPress - admin_url()函数,获取网站管理后台url链接 阅读979次,点赞0次
- 深度学习 - 图像标准化与归一化方法 阅读654次,点赞0次
- opencv-python - 读取视频,不改变视频分辨率修改视频帧率 阅读4936次,点赞2次
评论
169