RuntimeError: cublas64_100.dll not found.

RuntimeError: cublas64_100.dll not found.

Problem Description:

Problem: In the Baidu paddle framework, when the image classification and recognition task is run, there is a BUG: RuntimeError: cublas64_100.dll not found:

Cause Analysis:

The first possibility is that
you can search for the installation of CUDA and cudnn without installing CUDA .
At the same time, remind that Paddlepaddle does not support CUDA 9.1/9.2/10.1 at the current time.
Second, confirm that CUDA is installed, then check whether the set environment variables are normal.
It is recommended to restart the computer first. Most of the environment variables set by windows depend on restarting
Insert picture description here
. 3. The third kind of download dll library and put it in a suitable location.

You can find the missing cublas64_100.dll file in the C:\Users\Administrator\Anaconda3\envs\paddle\Library\bin directory and copy it to the C:\Windows\System32 directory; if you can’t find it, please click here at download cublas64_100.dll . Extraction code: yo0q
In the python window, import paddle, re-enter and paddle.fluid.install_check.run_check()
display Your Paddle is installed successfully! Let's start deep Learning with Paddle now, the installation is successful.
Insert picture description here


solution:

Download a cublas64_100.dll and copy it to the C:\Windows\System32 directory.
Link: https://pan.baidu.com/s/1lUh6pl8SPbXGFR_y4SCtLA
Extraction code:yo0q

Guess you like

Origin blog.csdn.net/beauthy/article/details/108320484