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
If we specify clang++ verison 8 in Makefile.common like this:
/usr/bin/clang++-8
It won't work in clang++-9 though version 9 is supported. But clang versions below 8 doesn't support aggregate expression. See below error:
dnnCompiler/include/operators/GlobalAveragePool.h:61:54: error: cannot compile this aggregate expression yet eResult = eigenTensor.mean(Eigen::array<int, 1>({2}));
The text was updated successfully, but these errors were encountered:
srohit0
gunjannandy
No branches or pull requests
Problem
If we specify clang++ verison 8 in Makefile.common like this:
It won't work in clang++-9 though version 9 is supported.
But clang versions below 8 doesn't support aggregate expression. See below error:
Workarounds
Solution
Implement both the above mentioned workarounds, to fully close this issue!
The text was updated successfully, but these errors were encountered: