TensorRT – TensorRT was linked against cuBLAS/cuBLAS LT 11.6.1 but loaded cuBLAS/cuBLAS LT 11.5.4错误提示
1 TensorRT was linked against cuBLAS/cuBLAS LT 11.6.1 but loaded cuBLAS/cuBLAS LT 11.5.4
使用TensorRT推理模型时,有时候会看到以下TensorRT自己打出的日志
TensorRT was linked against cuBLAS/cuBLAS LT 11.6.1 but loaded cuBLAS/cuBLAS LT 11.5.4
这是因为我们系统环境中的cuda版本不对,我们下载TensorRT的时候,从下载的文件名上,比如
TensorRT-8.2.0.6.Windows10.x86_64.cuda-11.4.cudnn8.2
我自己以为只要是下载cuda 11.4的版本就行了,之后的小版本就没在意,所以当时下载的时候我就下载了cuda 11.4.1,但是cuda 11.4.1的cuBLAS的版本只有11.5.4.8,那么如何知道哪一个cuda版本中的cuBLAS版本呢?
从Nvidia的官网中找到cuda的历史版本页面:https://docs.nvidia.com/cuda/archive/,
找到所有的cuda 11.4的链接,再每一个点进去看它的Release Notes,在其中找到CUDA cuBLAS,其后就有版本号,如下图所示
所以我们应该下载安装的版本是cuda 11.4.2,而不是cuda 11.4.1,所以为了避免出现问题(虽然不知道不适用对应的cuda版本会出现什么问题),还是一个版本一个版本慢慢校对,直到找到合适的cuda版本。
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:TensorRT – TensorRT was linked against cuBLAS/cuBLAS LT 11.6.1 but loaded cuBLAS/cuBLAS LT 11.5.4错误提示
原文链接:https://www.stubbornhuang.com/2529/
发布于:2023年03月02日 15:28:51
修改于:2023年06月21日 17:07:30
当前分类随机文章推荐
- TensorRT - workspace的作用 阅读1304次,点赞0次
- TensorRT - 转换onnx模型出现Slice_74 requires bool or uint8 I/O but node can not be handled by Myelin错误 阅读703次,点赞0次
- TensorRT - Invalid Node - TopK,This version of TensorRT only supports input K as an initializer 阅读807次,点赞0次
- TensorRT - 解决INVALID_ARGUMENT: getPluginCreator could not find plugin ScatterND version 1,TensorRT找不到ScatterND插件的问题 阅读5075次,点赞0次
- TensorRT - Using PreviewFeaturekFASTER_DYNAMIC_SHAPES_0805 can help improve performance and resolve potential functional issues 阅读995次,点赞0次
- TensorRT - 计算模型推理时间 阅读525次,点赞1次
- TensorRT - 安装TensorRT工具Polygraphy 阅读5329次,点赞0次
- TensortRT - 转换模型出现Could not locate zlibwapi.dll. Please make sure it is in your library path!错误 阅读1176次,点赞0次
- TensorRT - 使用C++ SDK出现无法解析的外部符号 "class sample::Logger sample::gLogger"错误 阅读669次,点赞0次
- TensorRT - 使用torch普通算子组合替代torch.einsum爱因斯坦求和约定算子的一般性方法 阅读3472次,点赞3次
全站随机文章推荐
- OpenVINO - 在Windows系统上配置OpenVINO C++开发环境 阅读268次,点赞0次
- 如何回看PLTV/m3u8直播源 阅读844次,点赞0次
- Visual Studio - 将程序的日志输出到Visual Studio即时窗口 阅读5556次,点赞1次
- 资源分享 - Game Development Tools 英文高清PDF下载 阅读2299次,点赞0次
- 资源分享 - Essential Mathematics for Games and Interactive Applications(Second Edition) 英文高清PDF下载 阅读2209次,点赞0次
- 资源分享 - Game Programming Gems 1 英文高清PDF下载 阅读2595次,点赞0次
- Python - 读取视频为numpy数组以及将numpy数组转换为视频 阅读2915次,点赞0次
- C++ - 使用标准库std::use_facet和std::codecvt进行跨平台gbk与utf8字符集转换 阅读485次,点赞0次
- 深度学习 - 理解LSTM网络[翻译] 阅读567次,点赞0次
- ThreeJS - 如何提升three.js的渲染效果?看完这篇你可能会有启发 阅读5517次,点赞1次
评论
169