Your compiler (cl 19.00.24210) may be ABI-incompatible with PyTorch!

Your compiler (cl 19.00.24210) may be ABI-incompatible with PyTorch!
最近在跑deep snake项目代码。
可以看看我的另一篇博客:新手跑deep snake(巨详细)
然后在使用Cuda编译库lib/csrc发现了这个问题,然后百度了很久都没找到具体的解决措施。
一开始是这个问题:

E:\Python\Lib\site-packages\torch\utils\cpp_extension.py:189: UserWarning: Error checking compiler version for cl: [WinError 2] 系统找不到指定的文件。
 warnings.warn('Error checking compiler version for {}: {}'.format(compiler, error))

意思是找不到cl.exe文件。然后我把cl.exe所在的目录C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64加到系统变量Path后面后,这个警告就变成了:

running build_ext
________________windows operation system ______________________
________________compiler info: b'Microsoft (R) C/C++ Optimizing Compiler Version 19.00.24210 for x64\r\nCopyright (C) Microsoft Corporation.  All rights reserved.\
r\n\r\nusage: cl [ option... ] filename... [ /link linkoption... ]\r\n'
E:\Python\lib\site-packages\torch\utils\cpp_extension.py:194: UserWarning:

                               !! WARNING !!

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Your compiler (cl 19.00.24210) may be ABI-incompatible with PyTorch!
Please use a compiler that is ABI-compatible with GCC 4.9 and above.
See https://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html.

See https://gist.github.com/goldsborough/d466f43e8ffc948ff92de7486c5216d6
for instructions on how to install GCC 4.9 or higher.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

                              !! WARNING !!

  warnings.warn(ABI_INCOMPATIBILITY_WARNING.format(compiler))
copying build\lib.win-amd64-3.6\_ext.cp36-win_amd64.pyd ->

意思是我的编译器cl跟PyTorch不兼容,需要GCC4.9或者更高版本的编译器。
但是我之前装过Dev-Cpp,里面的GCC版本是4.9.2的。
后来我还装了MinGW,然后gcc version 6.3.0 (MinGW.org GCC-6.3.0-1)
还是会报这个错误。
后来直到我跑通整个项目,这个问题都没有解决。

想了想,我没装Visual Studio,也可能是cuda版本低的原因啥的。

这个只是一个warning,就不要追求太完美了。与其在意这个warning,不如看看下面的error。如果只有这个warning,那就不要管了,专心去搞其他的。
加油,奥利给。

你可能感兴趣的:(deep,python,深度学习,神经网络)