Reputation: 205
I want to use Tensorflow on GPU. So I install all the needed tool and installed as below-
I tested that my cuda,cudnn is working using deviseQuery example. But Tensorflow not used GPU. Then i find that version compatibility issue is possible so i innstalled CudaToolkit,cudnn using conda environment checking with version compatibility on Tensorflow website which is given below.
But after this try Tensorflow-GPU not used GPU,yet. so what i am doing now? Any steps or suggestion require.
Upvotes: 2
Views: 3256
Reputation:
The installation engine has a problem for tensorflow-gpu 2.3
in Anaconda on Windows 10.
Workaround is to explicitly specify the correct tensorflow build:
conda install tensorflow-gpu=2.3 tensorflow=2.3=mkl_py38h1fcfbd6_0
Upvotes: 6