最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

yolov7报错:报错 For debugging consider passing CUDA_LAUNCH_BLOCKING=1

业界 admin 4浏览 0评论

报错信息

RuntimeError: CUDA error: invalid device ordinal
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.

解决方法:
原因:选择GPU设备时torch没有识别到。
解决方法:
加一句torch.cuda.device_count()代码

import torch
import os
os.environ["CUDA_VISIBLE_DEVICES"] = "1"
torch.cuda.device_count()

真的是烦死了,一上午时间,中午也没吃饭,一直在改这个破错误!现在终于跑起来了!!!!!!

报错信息

RuntimeError: CUDA error: invalid device ordinal
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.

解决方法:
原因:选择GPU设备时torch没有识别到。
解决方法:
加一句torch.cuda.device_count()代码

import torch
import os
os.environ["CUDA_VISIBLE_DEVICES"] = "1"
torch.cuda.device_count()

真的是烦死了,一上午时间,中午也没吃饭,一直在改这个破错误!现在终于跑起来了!!!!!!

与本文相关的文章

发布评论

评论列表 (0)

  1. 暂无评论