【pytorch】cuda torch torchvision版本对应

cuda torch torchvision版本对应以及查看

【pytorch】cuda torch torchvision版本对应_第1张图片
查看服务器cuda版本:

cat /usr/local/cuda/version.txt

查看torch torchvision版本:

import torch
print(torch.__version__)

import torchvision
print(torchvision.__version__)

print(torch.cuda.is_available()) # 查看是否有可用GPU
print(torch.cuda.device_count()) # 查看GPU数量

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