We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
More of a notes than an issue but at this point tensorflow does not compile with gcc 11, so if needed here are the notes on how to compile.
Changes needed:
mkdir build cd build cmake ../
then in:
#include <limits> #include <stdexcept>
#if (defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER)) || \
#if (defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && __GNUC__ < 11) || \
The text was updated successfully, but these errors were encountered:
Care to upstream those comments to the TensorFlow guys? Just in case there aren't open issues for those two changes there yet.
Sorry, something went wrong.
they are well aware of the compile issue, that is where I found the workaround ( split in 2 different sources ).
I just thought of adding the note here to save some time for someone who would like to compile with gcc11 ( arch users for example ).
Is this still an issue for newer Tensorflow versions? We're on 2.8.0 at present.
AFAIR we now got problems with GCC 12, cf. #145 …
No branches or pull requests
More of a notes than an issue but at this point tensorflow does not compile with gcc 11, so if needed here are the notes on how to compile.
Changes needed:
then in:
#if (defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER)) || \
by
#if (defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && __GNUC__ < 11) || \
The text was updated successfully, but these errors were encountered: