[Openmp-commits] [PATCH] D112475: [OpenMP][Offloading] Only get trip count if team construct
Shilei Tian via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Mon Oct 25 14:16:26 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2a30c03c6207: [OpenMP][Offloading] Only get trip count if team construct (authored by tianshilei1992).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112475/new/
https://reviews.llvm.org/D112475
Files:
openmp/libomptarget/src/omptarget.cpp
Index: openmp/libomptarget/src/omptarget.cpp
===================================================================
--- openmp/libomptarget/src/omptarget.cpp
+++ openmp/libomptarget/src/omptarget.cpp
@@ -1441,9 +1441,6 @@
}
}
- // Get loop trip count
- uint64_t LoopTripCount = getLoopTripCount(DeviceId);
-
// Launch device execution.
void *TgtEntryPtr = TargetTable->EntriesBegin[TM->Index].addr;
DP("Launching target execution %s with pointer " DPxMOD " (index=%d).\n",
@@ -1455,7 +1452,7 @@
if (IsTeamConstruct)
Ret = Device.runTeamRegion(TgtEntryPtr, &TgtArgs[0], &TgtOffsets[0],
TgtArgs.size(), TeamNum, ThreadLimit,
- LoopTripCount, AsyncInfo);
+ getLoopTripCount(DeviceId), AsyncInfo);
else
Ret = Device.runRegion(TgtEntryPtr, &TgtArgs[0], &TgtOffsets[0],
TgtArgs.size(), AsyncInfo);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112475.382125.patch
Type: text/x-patch
Size: 962 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20211025/7929fcb3/attachment.bin>
More information about the Openmp-commits
mailing list