RuntimeError: CUDA error: out of memory CUDA运行模式问题

RuntimeError: CUDA error: out of memory CUDA运行模式问题,第1张

【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.】CUDA运行模式问题 引入CUDA_LAUNCH_BLOCKING=1
‘’‘程序文件内容开头加入’‘’
import os

os.environ['CUDA_LAUNCH_BLOCKING'] = '1'

用cpu运行
把.to('cuda')变成.to('cpu')就能获得正常的track

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/718214.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-25
下一篇 2022-04-25

发表评论

登录后才能评论

评论列表(0条)

保存