到cuda下载对应的版本。
根据你的cuda版本选择cudnn版本下载。有介绍和下载地址
cudnn下载完成后解压,复制到相关的文件夹中。C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.0
。
这样cuda+cudnn配置完成。
根据自己的需要,选择是否要通过conda create gpuenvs
创建独立的运行环境。
通过pip install tensorflow-gpu=2.4.0
安装。这里的tesnorflow版本根据python版本选择。详情可见tensorflow官网描述。
根据tensorflow版本选择keras。pip install keras==2.4.3
。
10.测试:
from tensorflow.python.client import device_lib
print(device_lib.list_local_devices())
若是成功,将会出现以上的描述。
import tensorflow as tf
print(tf.test.is_built_with_cuda())
#输出为true,则代表可以使用
import tensorflow as tf
print (tf.__version__)
if tf.test.gpu_device_name():
print('Default GPU Device: {}'.format(tf.test.gpu_device_name()))
else:
print("Please install GPU version of TF")
pip list
或者conda list
来查看已安装的包。pip uninstall package
或者conda remove package
来删除已安装的包。家目录\.keras
中的keras.json
来修改keras默认的调用。