[Openmp-commits] [PATCH] D44487: [OpenMP][libomptarget] Enable globalization for workers
George Rokos via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Wed Mar 14 12:24:01 PDT 2018
grokos added inline comments.
================
Comment at: libomptarget/deviceRTLs/nvptx/src/data_sharing.cu:42-45
+ // Count the set bits in the 32 bit int version of Sh. If no bits
+ // are set then the thread calling this function is the active warp
+ // master thread.
+ return __popc(Sh) == 0;
----------------
Remove this change, that was a bug which has been fixed already. I have pushed it upstream.
Repository:
rOMP OpenMP
https://reviews.llvm.org/D44487
More information about the Openmp-commits
mailing list