[Openmp-commits] [PATCH] D17406: Add new OpenMP 4.5 schedule clause modifiers (monotonic/non-monotonic) feature
Jonathan Peyton via Openmp-commits
openmp-commits at lists.llvm.org
Thu Feb 25 10:00:25 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL261906: dd new OpenMP 4.5 schedule clause modifiers (monotonic/non-monotonic) feature (authored by jlpeyton).
Changed prior to commit:
http://reviews.llvm.org/D17406?vs=48385&id=49085#toc
Repository:
rL LLVM
http://reviews.llvm.org/D17406
Files:
openmp/trunk/runtime/src/kmp.h
openmp/trunk/runtime/src/kmp_dispatch.cpp
openmp/trunk/runtime/src/kmp_sched.cpp
Index: openmp/trunk/runtime/src/kmp_dispatch.cpp
===================================================================
--- openmp/trunk/runtime/src/kmp_dispatch.cpp
+++ openmp/trunk/runtime/src/kmp_dispatch.cpp
@@ -656,6 +656,14 @@
( &team -> t.t_disp_buffer[ my_buffer_index % KMP_MAX_DISP_BUF ] );
}
+ /* Currently just ignore the monotonic and non-monotonic modifiers (the compiler isn't producing them
+ * yet anyway).
+ * When it is we'll want to look at them somewhere here and use that information to add to our
+ * schedule choice. We shouldn't need to pass them on, they merely affect which schedule we can
+ * legally choose for various dynamic cases. (In paritcular, whether or not a stealing scheme is legal).
+ */
+ schedule = SCHEDULE_WITHOUT_MODIFIERS(schedule);
+
/* Pick up the nomerge/ordered bits from the scheduling type */
if ( (schedule >= kmp_nm_lower) && (schedule < kmp_nm_upper) ) {
pr->nomerge = TRUE;
Index: openmp/trunk/runtime/src/kmp.h
===================================================================
--- openmp/trunk/runtime/src/kmp.h
+++ openmp/trunk/runtime/src/kmp.h
@@ -369,6 +369,39 @@
kmp_nm_ord_trapezoidal = 199,
kmp_nm_upper = 200, /**< upper bound for nomerge values */
+#if OMP_41_ENABLED
+ /* Support for OpenMP 4.5 monotonic and nonmonotonic schedule modifiers.
+ * Since we need to distinguish the three possible cases (no modifier, monotonic modifier,
+ * nonmonotonic modifier), we need separate bits for each modifier.
+ * The absence of monotonic does not imply nonmonotonic, especially since 4.5 says
+ * that the behaviour of the "no modifier" case is implementation defined in 4.5,
+ * but will become "nonmonotonic" in 5.0.
+ *
+ * Since we're passing a full 32 bit value, we can use a couple of high bits for these
+ * flags; out of paranoia we avoid the sign bit.
+ *
+ * These modifiers can be or-ed into non-static schedules by the compiler to pass
+ * the additional information.
+ * They will be stripped early in the processing in __kmp_dispatch_init when setting up schedules, so
+ * most of the code won't ever see schedules with these bits set.
+ */
+ kmp_sch_modifier_monotonic = (1<<29), /**< Set if the monotonic schedule modifier was present */
+ kmp_sch_modifier_nonmonotonic = (1<<30), /**< Set if the nonmonotonic schedule modifier was present */
+
+# define SCHEDULE_WITHOUT_MODIFIERS(s) (enum sched_type)((s) & ~ (kmp_sch_modifier_nonmonotonic | kmp_sch_modifier_monotonic))
+# define SCHEDULE_HAS_MONOTONIC(s) (((s) & kmp_sch_modifier_monotonic) != 0)
+# define SCHEDULE_HAS_NONMONOTONIC(s) (((s) & kmp_sch_modifier_nonmonotonic) != 0)
+# define SCHEDULE_HAS_NO_MODIFIERS(s) (((s) & (kmp_sch_modifier_nonmonotonic | kmp_sch_modifier_monotonic)) == 0)
+#else
+ /* By doing this we hope to avoid multiple tests on OMP_41_ENABLED. Compilers can now eliminate tests on compile time
+ * constants and dead code that results from them, so we can leave code guarded by such an if in place.
+ */
+# define SCHEDULE_WITHOUT_MODIFIERS(s) (s)
+# define SCHEDULE_HAS_MONOTONIC(s) false
+# define SCHEDULE_HAS_NONMONOTONIC(s) false
+# define SCHEDULE_HAS_NO_MODIFIERS(s) true
+#endif
+
kmp_sch_default = kmp_sch_static /**< default scheduling algorithm */
};
Index: openmp/trunk/runtime/src/kmp_sched.cpp
===================================================================
--- openmp/trunk/runtime/src/kmp_sched.cpp
+++ openmp/trunk/runtime/src/kmp_sched.cpp
@@ -164,6 +164,9 @@
}
#if OMP_40_ENABLED
+ // Although there are schedule enumerations above kmp_ord_upper which are not schedules for "distribute",
+ // the only ones which are useful are dynamic, so cannot be seen here, since this codepath is only executed
+ // for static schedules.
if ( schedtype > kmp_ord_upper ) {
// we are in DISTRIBUTE construct
schedtype += kmp_sch_static - kmp_distribute_static; // AC: convert to usual schedule type
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D17406.49085.patch
Type: text/x-patch
Size: 4133 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20160225/701ad5d9/attachment-0001.bin>
More information about the Openmp-commits
mailing list