跳转至

查看 PyTorch 是否使用 GPU

借助 torch.cuda 中的命令,可以帮助我们查看 PyTorch 是否使用 GPU。

image-20221218225825151

Python
import torch

当前设备索引

Python
torch.cuda.current_device()

image-20221218225800410

可用的 GPU 数量

Python
torch.cuda.device_count()

image-20221218225816075

GPU 设备名字,设备索引默认从 0 开始

Python
torch.cuda.get_device_name(0)

image-20221218225825151

检查 CUDA 是否可用

Python
torch.cuda.is_available()

image-20221218225834009

评论