当前位置:   article > 正文

下载与cuda版本对应的pytorch、torchvision、torchaudio_torchaudio下载

torchaudio下载

安装torch之后,可能遇到以下的问题:

RuntimeError: CUDA error: no kernel image is available for execution on the device CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. For debugging consider passing CUDA_LAUNCH_BLOCKING=1.

这个时候很有可能是torch的版本和cuda,不一致,可以测试:

  1. >>> torch.cuda.is_available()
  2. True
  3. >>> a=torch.Tensor([2,6])
  4. >>> a=a.cuda()
  5. >>> a
  6. tensor([2., 6.], device='cuda:0')

如果不是上述结果,就需要重新安装torch啦,先使用pip uninstall把所有与torch相关的卸载了,然后重新安装。

可以直接在下列链接找到与cuda版本对应的pytorch、torchvision、torchaudio

Previous PyTorch Versions | PyTorchAn open source machine learning framework that accelerates the path from research prototyping to production deployment.icon-default.png?t=N7T8https://pytorch.org/get-started/previous-versions/里面的结构如下图所示,选取对应的命令即可(linux、windows、osx均有),支持pip和conda两种方式。

cuda11.2可以下:

pip install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html

或者

pip install torch==1.10.0+cu111 torchvision==0.11.0+cu111 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html

如果运行的时候,报错:“OSError: libtorch_hip.so: cannot open shared object file: No such file or directory”

则给torchaudio后加上cuda版本,即torchaudio==0.10.0+cu111

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/458755
推荐阅读
相关标签
  

闽ICP备14008679号