这篇文章将为大家详细讲解有关PyTorch如何检查GPU版本是否安装成功,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。anaconda命令行下检查:(base) PS C:\Users
这篇文章将为大家详细讲解有关PyTorch如何检查GPU版本是否安装成功,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
(base) PS C:\Users\chenxuqi> conda deactivatePS C:\Users\chenxuqi> conda activate ssd(ssd) PS C:\Users\chenxuqi> pythonPython 3.6.12 |Anaconda, Inc.| (default, Sep 9 2020, 00:29:25) [MSC v.1916 64 bit (AMD64)] on win32Type "help", "copyright", "credits" or "license" for more infORMation.>>> import torch>>> print(torch.__version__)0.4.0>>> print(torch.cuda.is_available())True>>>>>>>>>
Microsoft windows [版本 10.0.18363.1139](c) 2019 Microsoft Corporation。保留所有权利。C:\Users\chenxuqi>nvcc --versionnvcc: NVIDIA (R) Cuda compiler driverCopyright (c) 2005-2017 NVIDIA CorporationBuilt on Fri_Sep__1_21:08:32_Central_Daylight_Time_2017Cuda compilation tools, release 9.0, V9.0.176C:\Users\chenxuqi>C:\Users\chenxuqi>
import timeimport torch ##################################################for i in range(1,10): start = time.time() a = torch.FloatTensor(i*100,1000,1000) a = a.cuda() #a = a a = torch.matmul(a,a) end = time.time() - start print(end)
注意,这里显存太小,溢出了...但是安装是成功的...
Windows Powershell尝试新的跨平台 PowerShell https://aka.ms/pscore6PS C:\Users\chenxuqi\Desktop\新建文件夹> & 'D:\Anaconda3\envs\ssd\python.exe' 'c:\Users\chenxuqi\.vscode\extensions\ms-python.python-2020.10.332292344\pythonFiles\lib\python\debugpy\launcher' '50571' '--' 'c:\Users\chenxuqi\Desktop\新建文件夹\testGPU.py'3.62603592872619630.63051700592041020.90559673309326171.31999874114990231.59791398048400882.0483360290527344THCudaCheck FAIL file=c:\programdata\miniconda3\conda-bld\pytorch_1524549877902\work\aten\src\thc\generic/THCStorage.cu line=58 error=2 : out of memoryTraceback (most recent call last): File "c:\Users\chenxuqi\Desktop\新建文件夹\testGPU.py", line 10, in <module> a = torch.matmul(a,a)RuntimeError: cuda runtime error (2) : out of memory at c:\programdata\miniconda3\conda-bld\pytorch_1524549877902\work\aten\src\thc\generic/THCStorage.cu:58PS C:\Users\chenxuqi\Desktop\新建文件夹> conda activate ssdPS C:\Users\chenxuqi\Desktop\新建文件夹>
补充:pytorch离线安装,验证gpu版安装成功
使用conda 命令在线安装pytorch会下载中断,添加pip清华大学镜像源Https://pypi.tuna.tsinghua.edu.cn/simple/中下好torch,安装包,然后使用pip命令
pip install "下在的安装包的路径"
pip install "C:\Users\28614\Desktop\pytorch-nightly-cpu-1.0.0.dev20181222-py3.7_cpu_0.tar.bz2"
安装gpu版,需要安装cuda,和cudnn。
import torchprint(torch.cuda.is_available())
返回True,则安装成功
关于“PyTorch如何检查GPU版本是否安装成功”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
--结束END--
本文标题: PyTorch如何检查GPU版本是否安装成功
本文链接: https://lsjlt.com/news/268291.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0