runtimeerror: cuda error: out of memory cuda kernel errors might be asynchronously reported at some other api call,so the stacktrace below might be incorrect. for debugging consider passing cuda_launch_blocking=1.
时间: 2023-04-28 12:05:12 浏览: 463
pytorch模型提示超出内存RuntimeError: CUDA out of memory.
5星 · 资源好评率100%
这个错误消息表示:在 CUDA 内核运行时,发生了 "out of memory" 错误。这可能是由于 GPU 内存不足导致的。建议检查是否有其他程序占用了 GPU 内存,并尝试释放一些内存。而且可以考虑通过将 cuda_launch_blocking 设置为 1 来调试。
阅读全文