欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 汽车 > 时评 > CUDA、pytorch、配置环境教程合集

CUDA、pytorch、配置环境教程合集

2025/4/29 10:44:22 来源:https://blog.csdn.net/qq_50291870/article/details/147595537  浏览:    关键词:CUDA、pytorch、配置环境教程合集

1.CUDA卸载

参考:

【环境搭建】卸载&重新安装cuda+cudnn+anaconda+gpu版pytorch_卸载cuda-CSDN博客

【cuda】cuda安装与卸载升级_升级cuda-CSDN博客


 

检测代码:

https://www.zhihu.com/question/482335084

import torch
print('CUDA版本:',torch.version.cuda)
print('Pytorch版本:',torch.__version__)
print('显卡是否可用:','可用' if(torch.cuda.is_available()) else '不可用')
print('显卡数量:',torch.cuda.device_count())
print('是否支持BF16数字格式:','支持' if (torch.cuda.is_bf16_supported()) else '不支持')
print('当前显卡型号:',torch.cuda.get_device_name())
print('当前显卡的CUDA算力:',torch.cuda.get_device_capability())
print('当前显卡的总显存:',torch.cuda.get_device_properties(0).total_memory/1024/1024/1024,'GB')
print('是否支持TensorCore:','支持' if (torch.cuda.get_device_properties(0).major >= 7) else '不支持')
print('当前显卡的显存使用率:',torch.cuda.memory_allocated(0)/torch.cuda.get_device_properties(0).total_memory*100,'%')

2.5070ti出现bug

参考:更新5070ti适配pytorch,解决pytorch不支持sm_120问题-陌上玉台咏新桑-陌上玉台咏新桑-哔哩哔哩视频

【5070TI启动Stable Diffusion时报pytorch capability sm_120 is not compatible ...的解决方案】_5070ti pytorch-CSDN博客

从40系显卡换5070TI后CUDA出现问题,解决方法_5070ti cuda版本-CSDN博客

【torch报错】RuntimeError: CUDA error: no kernel image is available for execution on torch解决方案_torch.cuda.deferredcudacallerror: cuda call failed-CSDN博客

出现错误(已解决)RuntimeError: CUDA error: no kernel image is available for execution on the device CUDA ker-CSDN博客

深度学习环境配置避坑-CUDA11.0+DGL1.8_dgl cuda 11.0-CSDN博客

最后的解决方案是:

CUDA12.8+pytorch2.7.0

可以向下兼容pytorch2.5.1版本的代码,成功跑通

3.相关官方网站

pytorch:

Start Locally | PyTorch

清华镜像源:

Index of /anaconda/cloud/pytorch/win-64/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror

CUDA:

CUDA Toolkit - Free Tools and Training | NVIDIA Developer

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词