pytorch torch.backends.mps.is_available()为False,我怎么能改变它?

ndh0cuux  于 2023-05-29  发布在  其他
关注(0)|答案(1)|浏览(640)

我想用mps,但我的电脑坏了。我认为问题出在macOS版本上。我不知道为什么我的版本是10.16。
我安装了anaconda,版本是conda 23.3.1

Python 3.10.11 (main, Apr 20 2023, 13:59:00) [Clang 14.0.6 ] on darwin
Python 3.10.11 (main, Apr 20 2023, 13:59:00) [Clang 14.0.6 ] on darwin
Type "help",
"copyright"
"credits"
>›> import platform
"license" for more information.
>>> platform.platform()
'macOS- 10. 16-×86_64-i386-64bit'
>>> import torch
>>> torch.backends.mps.is_built()
True
>>> torch.backends.mps.is_available()
False

这是我的MAC信息屏幕截图。

irlmq6kh

irlmq6kh1#

the documentation所述,Metal PyTorch后端仅适用于Apple Silicon或AMD GPU。OP(Intel Iris)中显示的系统不满足该要求。

相关问题