[Openmp-commits] [PATCH] D108062: [OpenMP] Add interface for 5.1 scope construct
Hansang Bae via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Fri Aug 13 17:34:06 PDT 2021
hbae created this revision.
hbae added reviewers: AndreyChurbanov, tlwilmar, jlpeyton, Nawrin.
hbae added a project: OpenMP.
Herald added subscribers: guansong, yaxunl.
hbae requested review of this revision.
Herald added a reviewer: jdoerfert.
Herald added a subscriber: sstefan1.
The new interface only marks begin/end of a scope construct for
corresponding OMPT events, and we can use existing interfaces for
reduction operations.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D108062
Files:
openmp/runtime/src/dllexports
openmp/runtime/src/kmp.h
openmp/runtime/src/kmp_csupport.cpp
Index: openmp/runtime/src/kmp_csupport.cpp
===================================================================
--- openmp/runtime/src/kmp_csupport.cpp
+++ openmp/runtime/src/kmp_csupport.cpp
@@ -4395,6 +4395,38 @@
__kmp_str_free(&src_loc);
}
+// Mark begin of scope directive.
+void __kmpc_scope(ident_t *loc, kmp_int32 gtid, void *reserved) {
+// reserved is for extension of scope directive and not used.
+#if OMPT_SUPPORT && OMPT_OPTIONAL
+ if (ompt_enabled.enabled && ompt_enabled.ompt_callback_work) {
+ kmp_team_t *team = __kmp_threads[gtid]->th.th_team;
+ int tid = __kmp_tid_from_gtid(gtid);
+ ompt_callbacks.ompt_callback(ompt_callback_work)(
+ ompt_work_scope, ompt_scope_begin,
+ &(team->t.ompt_team_info.parallel_data),
+ &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data), 1,
+ OMPT_GET_RETURN_ADDRESS(0));
+ }
+#endif // OMPT_SUPPORT && OMPT_OPTIONAL
+}
+
+// Mark end of scope directive
+void __kmpc_end_scope(ident_t *loc, kmp_int32 gtid, void *reserved) {
+// reserved is for extension of scope directive and not used.
+#if OMPT_SUPPORT && OMPT_OPTIONAL
+ if (ompt_enabled.enabled && ompt_enabled.ompt_callback_work) {
+ kmp_team_t *team = __kmp_threads[gtid]->th.th_team;
+ int tid = __kmp_tid_from_gtid(gtid);
+ ompt_callbacks.ompt_callback(ompt_callback_work)(
+ ompt_work_scope, ompt_scope_end,
+ &(team->t.ompt_team_info.parallel_data),
+ &(team->t.t_implicit_task_taskdata[tid].ompt_task_info.task_data), 1,
+ OMPT_GET_RETURN_ADDRESS(0));
+ }
+#endif // OMPT_SUPPORT && OMPT_OPTIONAL
+}
+
#ifdef KMP_USE_VERSION_SYMBOLS
// For GOMP compatibility there are two versions of each omp_* API.
// One is the plain C symbol and one is the Fortran symbol with an appended
Index: openmp/runtime/src/kmp.h
===================================================================
--- openmp/runtime/src/kmp.h
+++ openmp/runtime/src/kmp.h
@@ -4128,6 +4128,10 @@
} kmp_severity_t;
extern void __kmpc_error(ident_t *loc, int severity, const char *message);
+// Support for scope directive
+KMP_EXPORT void __kmpc_scope(ident_t *loc, kmp_int32 gtid, void *reserved);
+KMP_EXPORT void __kmpc_end_scope(ident_t *loc, kmp_int32 gtid, void *reserved);
+
#ifdef __cplusplus
}
#endif
Index: openmp/runtime/src/dllexports
===================================================================
--- openmp/runtime/src/dllexports
+++ openmp/runtime/src/dllexports
@@ -393,6 +393,8 @@
__kmpc_error 281
__kmpc_masked 282
__kmpc_end_masked 283
+ __kmpc_scope 286
+ __kmpc_end_scope 287
%endif
# User API entry points that have both lower- and upper- case versions for Fortran.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D108062.366383.patch
Type: text/x-patch
Size: 2823 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20210814/7f667fb0/attachment-0001.bin>
More information about the Openmp-commits
mailing list