测试pytorch中是否可以调用GPU
测试pytorch中是否可以调用GPU测试代码import torchflag = torch.cuda.is_available()print(flag)ngpu= 1# Decide which device we want to run ondevice = torch.device("cuda:0" if (torch.cuda.is_available() and ngpu > 0
·
测试pytorch中是否可以调用GPU
测试代码
import torch
flag = torch.cuda.is_available()
print(flag)
ngpu= 1
# Decide which device we want to run on
device = torch.device("cuda:0" if (torch.cuda.is_available() and ngpu > 0) else "cpu")
print(device)
print(torch.cuda.get_device_name(0))
print(torch.rand(3,3).cuda())

其中,cuda:0是指第一个GPU。
更多推荐



所有评论(0)