admin 管理员组文章数量: 887021
官网地址:NVIDIA/apex: A PyTorch Extension: Tools for easy mixed precision and distributed training in Pytorch (github)https://github/NVIDIA/apex
官方说支持Ubuntu系统,Windows只是实验性的,所以在windows上安装可能会遇到各种问题,本文不能涵盖所有问题。
方法1:直接安装
pip install apex
此指令会安装最新的apex 0.9以上版本,我遇到了如下错误:
WARNING: Building wheel for cryptacular failed: [Errno 2] No such file or directory: 'C:\\Users\\XXX\\AppData\\Local\\Temp\\pip-wheel-0dhfjrr3\\cryptacular-1.6.2-cp37-cp37m-win_amd64.whl'
Failed to build cryptacular
ERROR: Could not build wheels for cryptacular, which is required to install pyproject.toml-based projects
方法2:下载安装
git clone https://www.github/nvidia/apex
cd apex
python setup.py install
这样会安装apex 0.1版本,理想情况下就安装成功了,我遇到了错误汇总:
module 'torch.nn' has no attribute 'backends' 这个应该是CUDA版本和apex兼容问题
或者错误
AttributeError: module 'torch.distributed' has no attribute '_all_gather_base'
方法3:下载安装
git clone https://github/NVIDIA/apex
cd apex
pip install -v --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" ./
或者
python setup.py install --cuda_ext --cpp_ext ./
还是遇到错误,
1 error detected in the compilation of "csrc/multi_tensor_scale_kernel.cu"
或者错误
ImportError was: ModuleNotFoundError("No module named 'amp_C'")
方法4:成功版本
git clone https://github/NVIDIA/apex.git
cd apex
git checkout f3a960f80244cf9e80558ab30f7f7e8cbf03c0a0
python setup.py install --cuda_ext --cpp_ext
版权声明:本文标题:Windows系统下安装apex,及错误汇总 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1727168896h1076871.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论