TensorFlow2.4与CUDA11.1缺失 ‘cusolver64_10.dll‘动态库

TensorFlow2.4与CUDA11.1缺失 'cusolver64_10.dll’动态库

自从换上30系列的显卡一直等着时使用GPU,昨天tensorflow2.4更新完以后依然显示不能使用GPU,发现问题缺少cusolver64_10.dll,

Could not load dynamic library ‘cusolver64_10.dll’; dlerror: cusolver64_10.dll not found
报错信息

查阅github,发现也有不少人遇到这个错误,这里贴上地址
Incompatibility between versions of TF and CUDA dynamic libraries.

附加缺少的库地址
Google云硬盘.

百度网盘:https://pan.baidu.com/s/1N_GZHBLkPjnk4DP1MR_u1Q
提取码:msa2

win10 下将cusolver64_10.dll粘贴到:

C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.1\bin

tensorflow测试GPU代码

import tensorflow as tf
tf.test.gpu_device_name() 
返回最后一行:'/device:GPU:0'

猜你喜欢

转载自blog.csdn.net/qq_42388742/article/details/111245578