TensorFlow-GPU==2.2.0 + cuda 10.1

安装Tensorflow- GPU ==2.2.0 + cuda 10.1

Ubuntu 16.04+anaconda+ cuda 10.1 安装tensorflow出现的问题

服务器电脑上安装了cuda 10.1,试了很多版本的tensorflow-gpu,使用下面语句测试调用GPU,发现返回的都是false。

	import tensorflow as tf
    tf.test.is_gpu_available()

原因是tensorflow的版本和cuda 10.1不匹配。
后来使用命令:

pip install tensorflow-gpu==2.2.0

发现这个版本的tensorflow是与cuda 10.1是匹配的。
此时tf.test.is_gpu_available()返回的是True。

参考链接

https://stackoverflow.com/questions/62475762/tensorflow-1-15-cannot-detect-gpu-with-cuda10-1

你可能感兴趣的:(tensorflow,深度学习)