TensorRT – TensorRT was linked against cuBLAS/cuBLAS LT 11.6.1 but loaded cuBLAS/cuBLAS LT 11.5.4错误提示
本文作者: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年03月02日 15:31:46

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版本。
当前分类随机文章推荐
- TensortRT - 转换模型出现Could not locate zlibwapi.dll. Please make sure it is in your library path!错误 阅读446次,点赞0次
- TensorRT - 使用C++ SDK出现无法解析的外部符号 "class sample::Logger sample::gLogger"错误 阅读220次,点赞0次
- TensorRT - 使用torch普通算子组合替代torch.einsum爱因斯坦求和约定算子的一般性方法 阅读2643次,点赞1次
- TensorRT - 转换onnx模型出现Slice_74 requires bool or uint8 I/O but node can not be handled by Myelin错误 阅读294次,点赞0次
- TensorRT - 喜大普奔,TensorRT8.2 EA起开始支持Einsum爱因斯坦求和算子 阅读1550次,点赞0次
- TensorRT - 解决INVALID_ARGUMENT: getPluginCreator could not find plugin ScatterND version 1,TensorRT找不到ScatterND插件的问题 阅读3286次,点赞0次
- TensorRT - 计算模型推理时间 阅读82次,点赞1次
- TensorRT - Polygraphy工具的使用 阅读4179次,点赞0次
- TensorRT - workspace的作用 阅读331次,点赞0次
- TensorRT - Windows下TensorRT下载与配置 阅读1578次,点赞0次
全站随机文章推荐
- 书籍翻译 – Fundamentals of Computer Graphics, Fourth Edition,第10章 Surface Shading中文翻译 阅读1356次,点赞3次
- 资源分享 - Artificial Intelligence - A Modern Approach , First Edition 英文高清PDF下载 阅读1327次,点赞0次
- 资源分享 - Guide to Computational Geometry Processing Foundations, Algorithms, and Methods英文高清PDF下载 阅读1591次,点赞0次
- C++ - const修饰符与指针 阅读266次,点赞1次
- Centos7 - 防火墙操作以及开启和关闭特定端口 阅读4153次,点赞2次
- 计算机图形学 - 3D数学入门之坐标系 阅读959次,点赞0次
- 资源分享 - Physics for Game Programmers 英文高清PDF下载 阅读1818次,点赞0次
- 资源分享 - Video Game Optimization 英文高清PDF下载 阅读1239次,点赞0次
- C++11/std::thread - 线程管理join/detach 阅读2248次,点赞0次
- Github - Github最简单的下载仓库中单个文件的方法 阅读600次,点赞0次
评论
167