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()) 

pytorch:测试GPU是否可用

上一篇:springboot available: expected at least 1 bean which qualifies as autowire candidate


下一篇:成功解决PackagesNotFoundError: The following packages are not available from current channels nyoka