【pytorch】torch 查看GPU
import torch
查看cuda是否可用
print(torch.cuda.is_available())
查看cuda设备的数量
print(torch.cuda.device_count())
查看当前使用的cuda编号
print(torch.cuda.current_device())
查看GPU设备名字
print(torch.cuda.get_device_name())
查看设备容量
print(torch.cuda.get_device_capability(0))
return:
True
1
0
GeForce GTX 1060
(6, 1)
本文来自博客园,作者:jucw,转载请注明原文链接:https://www.cnblogs.com/Jucw/p/16216576.html