怎么用 pytorch 查看 GPU 信息
Posted mashuai-191
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么用 pytorch 查看 GPU 信息相关的知识,希望对你有一定的参考价值。
如果你用的 Keras 或者 TensorFlow, 请移步 怎么查看keras 或者 tensorflow 正在使用的GPU
In [1]: import torch
In [2]: torch.cuda.current_device()
Out[2]: 0
In [3]: torch.cuda.device(0)
Out[3]: <torch.cuda.device at 0x7efce0b03be0>
In [4]: torch.cuda.device_count()
Out[4]: 1
In [5]: torch.cuda.get_device_name(0)
Out[5]: ‘GeForce GTX 950M‘
In [6]: torch.cuda.is_available()
Out[6]: True
以上是关于怎么用 pytorch 查看 GPU 信息的主要内容,如果未能解决你的问题,请参考以下文章