pytorch:测试GPU是否可用

Posted studyer_domi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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是否可用的主要内容,如果未能解决你的问题,请参考以下文章

在 Google Colaboratory 上,对于 Pytorch,GPU 的性能比 CPU 慢

pytorch gpu~ cuda cudacnn安装是否成功的测试代码

使用 pytorch 获取可用 GPU 内存的总量

如何使用 pytorch 列出所有当前可用的 GPU?

Pytorch使用GPU

GPU版本的pytorch安装(一次成功)