码迷,mamicode.com
首页 > 其他好文 > 详细

【E-02】内存不足RuntimeError: CUDA out of memory. Tried to allocate 16.00 MiB (GPU 0; 2.00 GiB total capacity; 1.34 GiB already allocated; 14.76 MiB free; 1.38 GiB reserved in total by PyTorch)

时间:2020-07-26 22:55:56      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:err   内存不足   device   微软   code   family   位置   com   src   

原因一:找到错误点,增加以下语句:

with torch.no_grad():

outputs = Net_(inputs) ---错误代码的位置。

? ?

原因二:GPU没有选对

os.environ["CUDA_VISIBLE_DEVICES"] = "0, 2, 3"

技术图片

查看性能,发现nVidia的只有GPU1,所以改成如下:

os.environ["CUDA_VISIBLE_DEVICES"] = "0"

若是不能再GPU上跑,直接改成如下:

os.environ["CUDA_VISIBLE_DEVICES"] = "-1"

? ?

不过,这种问题,还是GPU内存不足引起的。应该购买或租用高性能显卡,减少时间的浪费。

【E-02】内存不足RuntimeError: CUDA out of memory. Tried to allocate 16.00 MiB (GPU 0; 2.00 GiB total capacity; 1.34 GiB already allocated; 14.76 MiB free; 1.38 GiB reserved in total by PyTorch)

标签:err   内存不足   device   微软   code   family   位置   com   src   

原文地址:https://www.cnblogs.com/yifanrensheng/p/13381931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!