[Openmp-commits] [PATCH] D61459: [OPENMP][NVPTX]Improved several standard OpenMP functions, NFC.
Alexey Bataev via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Thu May 2 13:27:02 PDT 2019
ABataev created this revision.
ABataev added reviewers: grokos, gtbercea, kkwli0.
Herald added subscribers: jdoerfert, guansong.
Herald added a project: OpenMP.
Used parallelLevel[] counter to simplify and improve implementation of
the existing standard OpenMP functions. Functions are tested already in
several tests, the patch is NFC.
Repository:
rOMP OpenMP
https://reviews.llvm.org/D61459
Files:
libomptarget/deviceRTLs/nvptx/src/libcall.cu
Index: libomptarget/deviceRTLs/nvptx/src/libcall.cu
===================================================================
--- libomptarget/deviceRTLs/nvptx/src/libcall.cu
+++ libomptarget/deviceRTLs/nvptx/src/libcall.cu
@@ -53,17 +53,16 @@
}
EXTERN int omp_get_max_threads(void) {
- if (isSPMDMode())
+ if (parallelLevel[GetWarpId()] > 0)
// We're already in parallel region.
- return 1; // default is 1 thread avail
+ return 1; // default is 1 thread avail
omptarget_nvptx_TaskDescr *currTaskDescr =
getMyTopTaskDescriptor(/*isSPMDExecutionMode=*/false);
- int rc = 1; // default is 1 thread avail
- if (!currTaskDescr->InParallelRegion()) {
- // Not currently in a parallel region, return what was set.
- rc = currTaskDescr->NThreads();
- ASSERT0(LT_FUSSY, rc >= 0, "bad number of threads");
- }
+ ASSERT0(LT_FUSSY, !currTaskDescr->InParallelRegion(),
+ "Should no be in the parallel region");
+ // Not currently in a parallel region, return what was set.
+ int rc = currTaskDescr->NThreads();
+ ASSERT0(LT_FUSSY, rc >= 0, "bad number of threads");
PRINT(LD_IO, "call omp_get_max_threads() return %d\n", rc);
return rc;
}
@@ -155,19 +154,19 @@
}
EXTERN int omp_get_ancestor_thread_num(int level) {
- if (isRuntimeUninitialized()) {
- ASSERT0(LT_FUSSY, isSPMDMode(),
- "Expected SPMD mode only with uninitialized runtime.");
+ if (isSPMDMode())
return level == 1 ? GetThreadIdInBlock() : 0;
- }
int rc = -1;
- if (level == 0) {
+ // If level is 0 or all parallel regions are not active - return 0.
+ unsigned parLevel = parallelLevel[GetWarpId()];
+ if (level == 0 || (level > 0 && parLevel < OMP_ACTIVE_PARALLEL_LEVEL &&
+ level <= parLevel)) {
rc = 0;
} else if (level > 0) {
int totLevel = omp_get_level();
if (level <= totLevel) {
omptarget_nvptx_TaskDescr *currTaskDescr =
- getMyTopTaskDescriptor(isSPMDMode());
+ getMyTopTaskDescriptor(/*isSPMDExecutionMode=*/false);
int steps = totLevel - level;
PRINT(LD_IO, "backtrack %d steps\n", steps);
ASSERT0(LT_FUSSY, currTaskDescr,
@@ -207,19 +206,19 @@
}
EXTERN int omp_get_team_size(int level) {
- if (isRuntimeUninitialized()) {
- ASSERT0(LT_FUSSY, isSPMDMode(),
- "Expected SPMD mode only with uninitialized runtime.");
+ if (isSPMDMode())
return level == 1 ? GetNumberOfThreadsInBlock() : 1;
- }
int rc = -1;
- if (level == 0) {
+ unsigned parLevel = parallelLevel[GetWarpId()];
+ // If level is 0 or all parallel regions are not active - return 1.
+ if (level == 0 || (level > 0 && parLevel < OMP_ACTIVE_PARALLEL_LEVEL &&
+ level <= parLevel)) {
rc = 1;
} else if (level > 0) {
int totLevel = omp_get_level();
if (level <= totLevel) {
omptarget_nvptx_TaskDescr *currTaskDescr =
- getMyTopTaskDescriptor(isSPMDMode());
+ getMyTopTaskDescriptor(/*isSPMDExecutionMode=*/false);
int steps = totLevel - level;
ASSERT0(LT_FUSSY, currTaskDescr,
"do not expect fct to be called in a non-active thread");
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61459.197852.patch
Type: text/x-patch
Size: 3154 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20190502/7bdbd815/attachment.bin>
More information about the Openmp-commits
mailing list