安装新Python环境model.to(device)运行缓慢解决

运行程序提示信息

NVIDIA GeForce RTX 3090 with CUDA capability sm_86 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 compute_37.
If you want to use the NVIDIA GeForce RTX 3090 GPU with PyTorch, please check the instructions at https://pytorch.org/get-started/locally/

问题定位过程
1、搜索错误问题,感觉是pytorch版本和cuda版本问题
2、输出pytorch版本以及cuda版本信息:

#输出cuda版本信息
nvcc-version

#输出pytorch版本信息
python
import torch
torch.__version__

最后解决方法:按照错误提示给的网址
在里面选择对应cuda的pytorch下载方式
别忘记先把之前的pytorch卸载掉
conda uninstall pytorch

-----------------------------------新-----------------------------------
需要安装的pytorch为conda install pytorch torchvision torchaudio pytorch-cuda=11.6 -c pytorch -c nvidia

torch和torchvision的对应关系
https://blog.csdn.net/xcls2010/article/details/125553626

你可能感兴趣的:(笔记,python,pytorch,开发语言)