module 'torch._C' has no attribute '_mps_currentAllocatedMemory'
时间: 2023-10-08 07:13:05 浏览: 319
你遇到的错误信息是"AttributeError: module 'torch._C' has no attribute '_cuda_setDevice'"。根据你提供的引用,这个错误通常表示你在使用PyTorch的过程中,可能使用了不适合GPU的版本。你查询了PyTorch的版本信息,发现你安装的是适合CPU的版本,而不是适合GPU的版本。这也被证实了,因为你通过torch.cuda.is_available()的结果是False,说明你的系统没有GPU加速支持。
至于你提到的"_mps_currentAllocatedMemory"属性,根据提供的引用,我没有找到相关信息。但根据错误信息,这个属性也可能是与GPU相关的属性。
为了解决你的问题,你可以尝试安装适合GPU的PyTorch版本。你可以通过引用提供的链接下载稳定版本的PyTorch,并确保选择适合你的CUDA版本的whl文件进行安装。
如果你的系统确实没有GPU加速支持,那么你只能使用适合CPU的PyTorch版本,并相应地调整你的代码以适应CPU运行。
希望这些信息能够帮助你解决问题!<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [学习记录:AttributeError: module ‘torch._C‘ has no attribute ‘_cuda_setDevice](https://blog.csdn.net/weixin_47247597/article/details/130113980)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文