This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository openmp.
from 9bfe4ee Test commit: sort names in CREDITS.txt new ff9d3f5 Update implementation of OMPT to the specification OpenMP 5.0 [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: runtime/CMakeLists.txt | 10 +- runtime/src/exports_so.txt | 3 +- runtime/src/include/50/omp.h.var | 17 + runtime/src/include/50/omp_lib.f.var | 13 + runtime/src/include/50/omp_lib.f90.var | 19 + runtime/src/include/50/omp_lib.h.var | 19 + runtime/src/include/50/ompt.h.var | 650 +++++++++----- runtime/src/kmp.h | 15 +- runtime/src/kmp_atomic.h | 25 +- runtime/src/kmp_barrier.cpp | 134 ++- runtime/src/kmp_cancel.cpp | 75 +- runtime/src/kmp_config.h.cmake | 6 +- runtime/src/kmp_csupport.cpp | 945 ++++++++++++++++++--- runtime/src/kmp_dispatch.cpp | 96 ++- runtime/src/kmp_ftn_entry.h | 98 ++- runtime/src/kmp_ftn_os.h | 16 + runtime/src/kmp_global.cpp | 4 + runtime/src/kmp_gsupport.cpp | 392 +++++---- runtime/src/kmp_lock.cpp | 47 +- runtime/src/kmp_lock.h | 4 +- runtime/src/kmp_runtime.cpp | 541 ++++++------ runtime/src/kmp_sched.cpp | 92 +- runtime/src/kmp_settings.cpp | 32 +- runtime/src/kmp_taskdeps.cpp | 58 +- runtime/src/kmp_tasking.cpp | 525 +++++++++--- runtime/src/kmp_wait_release.h | 179 +++- runtime/src/ompt-event-specific.h | 136 +-- runtime/src/ompt-general.cpp | 401 +++++++-- runtime/src/ompt-internal.h | 65 +- runtime/src/ompt-specific.cpp | 377 +++++--- runtime/src/ompt-specific.h | 53 +- runtime/src/z_Linux_util.cpp | 2 +- runtime/test/CMakeLists.txt | 3 +- runtime/test/lit.cfg | 13 +- runtime/test/lit.site.cfg.in | 2 +- runtime/test/ompt/callback.h | 669 +++++++++++++-- runtime/test/ompt/cancel/cancel_parallel.c | 42 + runtime/test/ompt/cancel/cancel_taskgroup.c | 88 ++ runtime/test/ompt/cancel/cancel_worksharing.c | 68 ++ runtime/test/ompt/loadtool/tool_available.c | 59 ++ runtime/test/ompt/misc/api_calls.c | 66 ++ runtime/test/ompt/misc/control_tool.c | 27 + .../test/ompt/misc/control_tool_no_ompt_support.c | 12 + runtime/test/ompt/misc/idle.c | 32 + runtime/test/ompt/ompt-signal.h | 31 + .../test/ompt/parallel/dynamic_enough_threads.c | 43 + .../ompt/parallel/dynamic_not_enough_threads.c | 43 + .../ompt/parallel/max_active_levels_serialized.c | 72 ++ runtime/test/ompt/parallel/nested.c | 256 +++--- runtime/test/ompt/parallel/nested_lwt.c | 312 ++++--- runtime/test/ompt/parallel/nested_serialized.c | 98 ++- runtime/test/ompt/parallel/no_thread_num_clause.c | 95 +++ runtime/test/ompt/parallel/normal.c | 68 +- runtime/test/ompt/parallel/not_enough_threads.c | 76 ++ runtime/test/ompt/parallel/parallel_if0.c | 75 ++ runtime/test/ompt/parallel/serialized.c | 62 +- .../test/ompt/synchronization/barrier/explicit.c | 57 ++ .../test/ompt/synchronization/barrier/for_loop.c | 55 ++ .../test/ompt/synchronization/barrier/for_simd.c | 32 + .../ompt/synchronization/barrier/parallel_region.c | 40 + .../test/ompt/synchronization/barrier/sections.c | 63 ++ runtime/test/ompt/synchronization/barrier/single.c | 60 ++ runtime/test/ompt/synchronization/critical.c | 31 + runtime/test/ompt/synchronization/flush.c | 32 + runtime/test/ompt/synchronization/lock.c | 44 + runtime/test/ompt/synchronization/master.c | 36 + runtime/test/ompt/synchronization/nest_lock.c | 52 ++ runtime/test/ompt/synchronization/ordered.c | 31 + runtime/test/ompt/synchronization/taskgroup.c | 48 ++ runtime/test/ompt/synchronization/taskwait.c | 35 + runtime/test/ompt/synchronization/test_lock.c | 54 ++ runtime/test/ompt/synchronization/test_nest_lock.c | 42 + .../ompt/synchronization/test_nest_lock_parallel.c | 59 ++ runtime/test/ompt/tasks/dependences.c | 53 ++ runtime/test/ompt/tasks/explicit_task.c | 100 +++ runtime/test/ompt/tasks/serialized.c | 93 ++ runtime/test/ompt/tasks/task_in_joinbarrier.c | 90 ++ runtime/test/ompt/tasks/task_types.c | 112 +++ runtime/test/ompt/tasks/task_types_serialized.c | 112 +++ runtime/test/ompt/tasks/taskyield.c | 62 ++ runtime/test/ompt/tasks/untied_task.c | 107 +++ .../ompt/worksharing/for/{auto.c => auto_split.c} | 5 +- runtime/test/ompt/worksharing/for/base.h | 25 +- .../test/ompt/worksharing/for/base_serialized.h | 15 +- runtime/test/ompt/worksharing/for/base_split.h | 66 ++ runtime/test/ompt/worksharing/for/dynamic_split.c | 6 + runtime/test/ompt/worksharing/for/guided_split.c | 6 + runtime/test/ompt/worksharing/for/runtime_split.c | 6 + .../worksharing/for/{static.c => static_split.c} | 5 +- runtime/test/ompt/worksharing/sections.c | 36 + runtime/test/ompt/worksharing/single.c | 36 + 91 files changed, 7234 insertions(+), 1833 deletions(-) mode change 100644 => 100755 runtime/test/ompt/callback.h create mode 100644 runtime/test/ompt/cancel/cancel_parallel.c create mode 100644 runtime/test/ompt/cancel/cancel_taskgroup.c create mode 100644 runtime/test/ompt/cancel/cancel_worksharing.c create mode 100644 runtime/test/ompt/loadtool/tool_available.c create mode 100644 runtime/test/ompt/misc/api_calls.c create mode 100644 runtime/test/ompt/misc/control_tool.c create mode 100644 runtime/test/ompt/misc/control_tool_no_ompt_support.c create mode 100644 runtime/test/ompt/misc/idle.c create mode 100644 runtime/test/ompt/ompt-signal.h create mode 100644 runtime/test/ompt/parallel/dynamic_enough_threads.c create mode 100644 runtime/test/ompt/parallel/dynamic_not_enough_threads.c create mode 100644 runtime/test/ompt/parallel/max_active_levels_serialized.c create mode 100644 runtime/test/ompt/parallel/no_thread_num_clause.c create mode 100644 runtime/test/ompt/parallel/not_enough_threads.c create mode 100644 runtime/test/ompt/parallel/parallel_if0.c create mode 100644 runtime/test/ompt/synchronization/barrier/explicit.c create mode 100644 runtime/test/ompt/synchronization/barrier/for_loop.c create mode 100644 runtime/test/ompt/synchronization/barrier/for_simd.c create mode 100644 runtime/test/ompt/synchronization/barrier/parallel_region.c create mode 100644 runtime/test/ompt/synchronization/barrier/sections.c create mode 100644 runtime/test/ompt/synchronization/barrier/single.c create mode 100644 runtime/test/ompt/synchronization/critical.c create mode 100644 runtime/test/ompt/synchronization/flush.c create mode 100644 runtime/test/ompt/synchronization/lock.c create mode 100644 runtime/test/ompt/synchronization/master.c create mode 100644 runtime/test/ompt/synchronization/nest_lock.c create mode 100644 runtime/test/ompt/synchronization/ordered.c create mode 100644 runtime/test/ompt/synchronization/taskgroup.c create mode 100644 runtime/test/ompt/synchronization/taskwait.c create mode 100644 runtime/test/ompt/synchronization/test_lock.c create mode 100644 runtime/test/ompt/synchronization/test_nest_lock.c create mode 100644 runtime/test/ompt/synchronization/test_nest_lock_parallel.c create mode 100644 runtime/test/ompt/tasks/dependences.c create mode 100644 runtime/test/ompt/tasks/explicit_task.c create mode 100644 runtime/test/ompt/tasks/serialized.c create mode 100644 runtime/test/ompt/tasks/task_in_joinbarrier.c create mode 100644 runtime/test/ompt/tasks/task_types.c create mode 100644 runtime/test/ompt/tasks/task_types_serialized.c create mode 100644 runtime/test/ompt/tasks/taskyield.c create mode 100644 runtime/test/ompt/tasks/untied_task.c copy runtime/test/ompt/worksharing/for/{auto.c => auto_split.c} (55%) create mode 100644 runtime/test/ompt/worksharing/for/base_split.h create mode 100644 runtime/test/ompt/worksharing/for/dynamic_split.c create mode 100644 runtime/test/ompt/worksharing/for/guided_split.c create mode 100644 runtime/test/ompt/worksharing/for/runtime_split.c copy runtime/test/ompt/worksharing/for/{static.c => static_split.c} (55%) create mode 100644 runtime/test/ompt/worksharing/sections.c create mode 100644 runtime/test/ompt/worksharing/single.c