[Openmp-commits] [PATCH] D44487: [OpenMP][libomptarget] Enable globalization for workers
Gheorghe-Teodor Bercea via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Wed Mar 14 13:58:13 PDT 2018
gtbercea 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;
----------------
grokos wrote:
> Remove this change, that was a bug which has been fixed already. I have pushed it upstream.
Was there a bug fix for this published on fabricator prior to me posting it in this patch?
Repository:
rOMP OpenMP
https://reviews.llvm.org/D44487
More information about the Openmp-commits
mailing list