TensorFlow2.4 and CUDA11.1 are missing the'cusolver64_10.dll' dynamic library

TensorFlow2.4 and CUDA11.1 are missing the'cusolver64_10.dll' dynamic library

Since I switched to a 30-series graphics card, I have been waiting to use the GPU. Yesterday, after tensorflow2.4 was updated, it still showed that the GPU could not be used. It was found that the problem was missing cusolver64_10.dll.

Could not load dynamic library ‘cusolver64_10.dll’; dlerror: cusolver64_10.dll not found
Error message

I checked github and found that many people encountered this error. Paste the address
Incompatibility between versions of TF and CUDA dynamic libraries here .

Attach the missing library address
Google Cloud Drive .

Baidu network disk: https://pan.baidu.com/s/1N_GZHBLkPjnk4DP1MR_u1Q
extraction code: msa2

Paste cusolver64_10.dll under win10 to:

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

tensorflow test GPU code

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

Guess you like

Origin blog.csdn.net/qq_42388742/article/details/111245578