核心内容摘要
python微信小程序的物流车辆货运评价信息平台
参考链接深入解析RTX5060 Ti显卡安装cuda版本PyTorch踩坑记录 - yxysuanfa - 博客园5060 显卡安装cuda版本PyTorch踩坑记录问题如下TX5060 Ti显卡安装cuda版本PyTorch踩坑记录问题如下NVIDIA GeForce RTX 5060 Ti with CUDA capability sm_120 is not compatible with the current PyTorch installation. The current PyTorch install supports CUDA capabilities sm_37 sm_50 sm_60 sm_61 sm_70 sm_75 sm_80 sm_86 compute_
If you want to use the NVIDIA GeForce RTX 5060 Ti GPU with PyTorch, please check the instructions at https://pytorch.org/get-started/locally/ warnings.warn(incompatible_device_warn.format(device_name, capability, .join(arch_list), device_name))你安装的 PyTorch 版本过旧其支持的 CUDA 计算能力最高 sm_86无法匹配 NVIDIA GeForce RTX 5060 T的计算能力sm_120属于 NVIDIA 最新的 Blackwell 架构。
只有安装适配 Blackwell 架构的 PyTorch 版本才能消除警告并让 GPU 正常发挥性能。
GPU 计算能力与 PyTorch 适配RTX 5060 Ti属于 Blackwell 架构计算能力为 sm_120是 2024 年后推出的新显卡需要支持该架构的 PyTorch 版本通常是 PyTorch
3 及以上且依赖 CUDA
1
4/
1
5。
当前 PyTorch仅支持到 sm_86Ampere 架构如 RTX 30/40 系列完全不兼容 sm_120因此会触发兼容性警告甚至可能导致 GPU 无法被调用仅用 CPU 运行。
所以我重新安装了cuda
12.
0以及pytorch
2.