You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tested Clang versions 11.1.0, 14.0.6, and 16.0.6, that report _OPENMP=201811 and they don't need a fix reported in issue #81. This leads me to believe that the reported compiler version was not accurate. The commercial compilers from Intel and NVIDIA also don't report the problem.
The text was updated successfully, but these errors were encountered:
Commit 114602d (responding to issue #81) broke compilation with many versions of GCC. Here's the list of GCC versions that don't work any more:
the error with these versions is:
That's because the loop upper bound is implicitly shared so it doesn't need explicit designation as
shared
.The newer GCC versions do not complain about explicit designation as
shared
for loop upper bound. These are the versions that I tested:I tested Clang versions 11.1.0, 14.0.6, and 16.0.6, that report
_OPENMP=201811
and they don't need a fix reported in issue #81. This leads me to believe that the reported compiler version was not accurate. The commercial compilers from Intel and NVIDIA also don't report the problem.The text was updated successfully, but these errors were encountered: