当前位置:   article > 正文

【释放GPU内存】OutOfMemoryError: CUDA out of memory_outofmemoryerror: cuda out of memory.

outofmemoryerror: cuda out of memory.

问题原因

报错信息:
OutOfMemoryError: CUDA out of memory. Tried to allocate 128.00 MiB (GPU 0; 6.00 GiB total capacity; 5.19 GiB already allocated; 0 bytes free; 5.21 GiB reserved in total by PyTorch) If reserved memory is >> allocated memory try setting max_split_size_mb to avoid fragmentation. See documentation for Memory Management and PYTORCH_CUDA_ALLOC_CONF
原因:
cmd终端运行nvidia-smi命令,可以查看到CUDA已经被快被占满。
这种情况可能是之前的训练占用了显存,没被释放。

解决方法

使用torch.cuda.empty_cache()方法来释放PyTorch的缓存,以释放一部分被PyTorch占用的GPU内存。

import torch
torch.cuda.empty_cache()
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/88970
推荐阅读
相关标签
  

闽ICP备14008679号