赞
踩
pip版本
pip install torch==1.12.0+cu113 torchvision==0.13.0+cu113 torchaudio==0.12.0 --extra-index-url https://download.pytorch.org/whl/cu113
conda版本
conda install pytorch==1.12.0 torchvision==0.13.0 torchaudio==0.12.0 cudatoolkit=11.3 -c pytorch
测试代码
import torch
if torch.cuda.is_available():
device = torch.cuda.get_device_name(0)
print(f"当前GPU型号: {device}")
else:
print("未检测到可用的GPU")
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。