当前位置:网站首页>Pytorch GPU 训练环境搭建
Pytorch GPU 训练环境搭建
2022-08-03 19:46:00 【叶赫那拉 赫敏】
之前⼀直使⽤ Tensorflow 训练模型,第⼀次训练Pytorch模型的时候,发现速度很慢,仔细观察,发现GPU 内存占⽤为0,基本没有使⽤GPU。
AssertionError: CUDA unavailable, invalid device 0 requested
cuda不可⽤报错,现实没有有效的驱动可使⽤
测试cuda是否配置正确
import torch
print(torch.cuda.is_available())
重新安装cuda
检测本地GPU CUDA版本 nvidia-smi
pip3 install torch1.9.0+cu101 torchvision0.10.0+cu101 torchaudio=0.9.0 -f
https://download.pytorch.org/whl/torch_stable.html
当前 torchvision0.10.0+cu101 版本必须是匹配的。如果版本不匹配,如上⾯的命令,则会出现错误
我们打开网站
https://download.pytorch.org/whl/torch_stable.html
查看所有版本
“cu101” 表示需要的CUDA版本
“torchvision-0.2.1” 可以看到我们可以适应的版本
其它字段信息,包含适配 python 版本,cpu 版本,或者是系统⽀持
conda install torch==1.8.1+cu101 torchvision==0.9.1+cu101
torchaudio===0.8.1 -f https://download.pytorch.org/whl/torch_stable.html
如果安装还是报错的话
ERROR: Could not find a version that satisfies the requirement
torch1.8.1+cu101...
我们可以换下⾯这种安装⽅式
conda install -i https://pypi.tuna.tsinghua.edu.cn/simple torch===1.8.1
torchvision===0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
终于安装成功,满⼼欢⼼重新测试:
还是不对,这⼀次报错说我们的 CUDA 驱动版本太低了,⽽是 Pytorch 的版本和 CUDA 不匹配。
查看我们的 CUDA Version 为 10.0.130
再看下我们当前环境的 torch 版本
发现1.8.0版本对应的CUDA最低为10.2 版本,确实⽐我们的要训练环境要高,重新调整我们本地虚拟环境版本,我们稍微降低⼀下版本,Torch官⽹的版本只提供了CUDA 9.2和CUDA 10.1的版本,我的CUDA是10.0的。所以这里版本不对应导致Torch.cuda加速无法运行。
这⾥支持10.0版本为1.2.0版本,感觉有点低,升级⼀下CUDA版本到10.1版本
边栏推荐
- glide set gif start stop
- C中的数据存储
- 安装radondb mysql遇到问题
- Detailed demonstration pytorch framework implementations old photo repair (GPU)
- ScrollView嵌套RV,滑动有阻力不顺滑怎么办?
- The addition and subtraction of the score of the force deduction brush question (a daily question 7/27)
- Use ControlTemplate or Style from resource file in WPF .cs and find the control
- 【STM32】标准库-自定义BootLoader
- 开源教育论坛| ChinaOSC
- 阿里巴巴政委体系-第六章、阿里政委体系运作
猜你喜欢
随机推荐
149. 直线上最多的点数-并查集做法
网络协议-TCP、UDP区别及TCP三次握手、四次挥手
In-depth understanding of JVM-memory structure
Kettle 读取 Excel 数据输出到 Oracle 详解
ctfshow php features
MySQL基础
Postgresql snapshot optimization Globalvis new system analysis (performance greatly enhanced)
JMeter笔记5 |Badboy使用和录制
Postgresql源码(65)新快照体系Globalvis工作原理分析
Shell programming loop statement
百利药业IPO过会:扣非后年亏1.5亿 奥博资本是股东
Calculation of the array serial number of Likou brush questions (one question per day 7/28)
Line the last time the JVM FullGC make didn't sleep all night, collapse
net-snmp私有mib动态加载到snmpd
FreeRTOS中级篇
Statistical machine learning 】 【 linear regression model
剑指 Offer II 044. 二叉树每层的最大值-dfs法
「学习笔记」高斯消元
ScrollView嵌套RV,滑动有阻力不顺滑怎么办?
建模该从哪一步开始?给你分析,给零基础的你一些学习建议