美文网首页
[pytorch]查看GPU信息

[pytorch]查看GPU信息

作者: 原来是酱紫呀 | 来源:发表于2018-11-28 09:23 被阅读0次

    20181128 qzd


    https://pytorch.org/docs/stable/cuda.html

    1. 查看GPU是否可用
    torch.cuda.is_available()
    
    1. 返回GPU数量
    torch.cuda.device_count()
    
    1. 返回GPU名字,设备索引默认从0开始
    torch.cuda.get_device_name(0)
    
    1. 返回当前设备索引
    torch.cuda.current_device()
    

    相关文章

      网友评论

          本文标题:[pytorch]查看GPU信息

          本文链接:https://www.haomeiwen.com/subject/yiooqqtx.html