diff options
Diffstat (limited to 'openmp/runtime/test/ompt/parallel/serialized.c')
-rw-r--r-- | openmp/runtime/test/ompt/parallel/serialized.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/openmp/runtime/test/ompt/parallel/serialized.c b/openmp/runtime/test/ompt/parallel/serialized.c new file mode 100644 index 00000000000..6338e00e90a --- /dev/null +++ b/openmp/runtime/test/ompt/parallel/serialized.c @@ -0,0 +1,19 @@ +// RUN: %libomp-compile-and-run | FileCheck %s +// REQUIRES: ompt, ompt-trace +#include "callback.h" + +int main() +{ + #pragma omp parallel num_threads(1) + { + } + + // CHECK: {{^}}[[MASTER_ID:[0-9]+]]: ompt_event_parallel_begin: parent_task_id=[[PARENT_TASK_ID:[0-9]+]], parent_task_frame=0x{{[0-f]+}}, parallel_id=[[PARALLEL_ID:[0-9]+]], requested_team_size=1, parallel_function=0x{{[0-f]+}}, invoker=[[PARALLEL_INVOKER:.+]] + + // CHECK: {{^}}[[MASTER_ID]]: ompt_event_implicit_task_begin: parallel_id=[[PARALLEL_ID]], task_id=[[IMPLICIT_TASK_ID:[0-9]+]] + // CHECK: {{^}}[[MASTER_ID]]: ompt_event_implicit_task_end: parallel_id=[[PARALLEL_ID]], task_id=[[IMPLICIT_TASK_ID]] + + // CHECK: {{^}}[[MASTER_ID]]: ompt_event_parallel_end: parallel_id=[[PARALLEL_ID]], task_id=[[PARENT_TASK_ID]], invoker=[[PARALLEL_INVOKER]] + + return 0; +} |