cuda11.0+pytorch(gpu)版本安装

# CUDA 11.0
pip install torch==1.7.1+cu110 torchvision==0.8.2+cu110 torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html

 验证

#coding:utf-8
import torch
print(torch.cuda.current_device())# 输出当前设备(我只有一个GPU为0)
print(torch.cuda.device(0))
print(torch.cuda.device_count())# 输出含有的GPU数目
print(torch.cuda.get_device_name(0))# 输出GPU名称 --比如GeForce RTX 2060
x = torch.rand(5, 3)
print(x)

cuda11.0+pytorch(gpu)版本安装_第1张图片

 

你可能感兴趣的:(学习之路,pytorch,深度学习,人工智能)