[Openmp-commits] [PATCH] D73239: [nfc][libomptarget] Remove SHARED annotation from local variables
Jon Chesterfield via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Wed Jan 22 16:01:34 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG0e9374e3740f: [nfc][libomptarget] Remove SHARED annotation from local variables (authored by JonChesterfield).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73239/new/
https://reviews.llvm.org/D73239
Files:
openmp/libomptarget/deviceRTLs/common/src/reduction.cu
Index: openmp/libomptarget/deviceRTLs/common/src/reduction.cu
===================================================================
--- openmp/libomptarget/deviceRTLs/common/src/reduction.cu
+++ openmp/libomptarget/deviceRTLs/common/src/reduction.cu
@@ -230,7 +230,7 @@
: /*Master thread only*/ 1;
uint32_t TeamId = GetBlockIdInKernel();
uint32_t NumTeams = GetNumberOfBlocksInKernel();
- SHARED volatile bool IsLastTeam;
+ volatile bool IsLastTeam;
// Team masters of all teams write to the scratchpad.
if (ThreadId == 0) {
@@ -423,8 +423,8 @@
: /*Master thread only*/ 1;
uint32_t TeamId = GetBlockIdInKernel();
uint32_t NumTeams = GetNumberOfBlocksInKernel();
- SHARED unsigned Bound;
- SHARED unsigned ChunkTeamCount;
+ unsigned Bound;
+ unsigned ChunkTeamCount;
// Block progress for teams greater than the current upper
// limit. We always only allow a number of teams less or equal
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D73239.239725.patch
Type: text/x-patch
Size: 973 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20200123/1687b173/attachment.bin>
More information about the Openmp-commits
mailing list