-
Notifications
You must be signed in to change notification settings - Fork 346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed building wheel for transformer-engine #459
Comments
You need a C++ compiler that supports C++17 to build TE and I assume that the version of GCC that is shipped with Ubuntu 18.04 is too old for that. According to the GCC feature list support for filesystem from C++17 was added in GCC 8.1. Could you try with at least that version? |
Hello, did you figure out the issue? I am facing the same issue with cmake 3.28/3.29/3.30 and gcc 12.4. |
This error message suggests that your compiler does not have C++17 support. You should first try building with verbose output so that we can see what compiler command is being run:
This will spit out a lot of info, so you'll need to search for where
See #355 (comment) for more guidance on build errors. |
Ubuntu 18.04
python 3.11.5
conda
pip install --upgrade git+https://github.com/NVIDIA/TransformerEngine.git@stable
...
...
[ 79%] Building CXX object common/CMakeFiles/transformer_engine.dir/util/cuda_driver.cpp.o
/tmp/pip-req-build-j223vg5e/transformer_engine/common/util/cuda_driver.cpp:8:10: fatal error: filesystem: No such file or directory
#include
^~~~~~~~~~~~
Thanks in advance.
The text was updated successfully, but these errors were encountered: