LLVM OpenMP 22.0.0git
dynamic_enough_threads.c
Go to the documentation of this file.
1// clang-format off
2// RUN: %libomp-compile-and-run | FileCheck %s
3// REQUIRES: ompt
4// clang-format on
5#include "callback.h"
6
7int main() {
9
10#pragma omp parallel num_threads(4)
11 {
12 print_ids(0);
13 print_ids(1);
14 }
16
17 // clang-format off
18 // Check if libomp supports the callbacks for this test.
19 // CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_thread_begin'
20 // CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_thread_end'
21 // CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
22 // CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
23 // CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
24
25 //team-size of 1-4 is expected
26
27 // CHECK: 0: NULL_POINTER=[[NULL:.*$]]
28
29 // make sure initial data pointers are null
30 // CHECK-NOT: 0: parallel_data initially not null
31 // CHECK-NOT: 0: task_data initially not null
32 // CHECK-NOT: 0: thread_data initially not null
33
34 // CHECK: {{^}}[[MASTER_ID:[0-9]+]]: ompt_event_parallel_begin: parent_task_id=[[PARENT_TASK_ID:[0-f]+]], parent_task_frame.exit=[[NULL]], parent_task_frame.reenter={{(0x)?[0-f]+}}, parallel_id=[[PARALLEL_ID:[0-f]+]], requested_team_size=4, codeptr_ra=[[RETURN_ADDRESS:(0x)?[0-f]+]]{{[0-f][0-f]}}, invoker=[[PARALLEL_INVOKER:[0-9]+]]
35
36 // CHECK: {{^}}[[MASTER_ID]]: ompt_event_implicit_task_begin: parallel_id=[[PARALLEL_ID]], task_id=[[IMPLICIT_TASK_ID:[0-f]+]], team_size={{[1-4]}}
37 // CHECK: {{^}}[[MASTER_ID]]: task level 0: parallel_id=[[PARALLEL_ID]], task_id=[[IMPLICIT_TASK_ID]]
38 // CHECK: {{^}}[[MASTER_ID]]: task level 1: parallel_id=[[IMPLICIT_PARALLEL_ID:[0-f]+]], task_id=[[PARENT_TASK_ID]]
39 // CHECK: {{^}}[[MASTER_ID]]: ompt_event_implicit_task_end: parallel_id={{[0-f]+}}, task_id=[[IMPLICIT_TASK_ID]]
40
41 // CHECK: {{^}}[[MASTER_ID]]: ompt_event_parallel_end: parallel_id=[[PARALLEL_ID]], task_id=[[PARENT_TASK_ID]], invoker=[[PARALLEL_INVOKER]]
42 // CHECK: {{^}}[[MASTER_ID]]: fuzzy_address={{.*}}[[RETURN_ADDRESS]]
43 // clang-format on
44
45 return 0;
46}
#define print_fuzzy_address(id)
Definition callback.h:360
static void print_ids(int level)
Definition callback.h:187
int main()
#define omp_set_dynamic
Definition kmp_stub.cpp:35