[Openmp-commits] [PATCH] D58776: [OMPT] Handling of the events of initial-task-begin and initial-task-end
Tim Cramer via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Fri Mar 1 10:09:23 PST 2019
tcramer marked 4 inline comments as done.
tcramer added a comment.
All concerns should be addressed now.
================
Comment at: runtime/test/ompt/callback.h:465
+ parallel_data->value = ompt_get_unique_id();
+ printf("%" PRIu64 ": ompt_event_task_create: parent_task_id=%" PRIu64 ", parent_task_frame.exit=%p, parent_task_frame.reenter=%p, new_task_id=%" PRIu64 ", codeptr_ra=%p, task_type=%s=%d, has_dependences=%s\n", ompt_get_thread_data()->value, 0 , NULL, NULL, task_data->value, NULL, buffer, flags, "no");
+ } else {
----------------
hbae wrote:
> I think this statement should print information about `ompt_event_initial_task_begin`.
This had an impact on several test. It is done now.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58776/new/
https://reviews.llvm.org/D58776
More information about the Openmp-commits
mailing list