出现错误RuntimeError: CUDA error: no kernel image is available for execution on the device

跑检测表盘识别时,安装requirment文件后,出现torchvision和torchaudio版本和torch版本不对应问题,运行代码时出现

 原因:torch vision和torchaudio版本不对应与torch

要更换版本,所以先卸载之前的torch和torchvision和torch audio

出现错误RuntimeError: CUDA error: no kernel image is available for execution on the device_第1张图片 

我所用cuda为11.6,代码要求torch版本为大于1.7,所以查找pytorch版本,应设置为1.12.0

出现错误RuntimeError: CUDA error: no kernel image is available for execution on the device_第2张图片

已知torch版本,找对应的torchvision和torchaudio版本

 

参考:http://t.csdn.cn/ym7VS 

     运行命令

pip install torch==1.7.1+cu116 torchvision==0.8.2+cu116 torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html

安装成功

另:查看版本

python

import torch
torch.__version__

import torchvision
torchvision.__version__
 退出:exit()

 

你可能感兴趣的:(深度学习,pytorch,python)