brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.1 KiB · 0bf1026 Raw
47 lines · c
1// clang-format off2// RUN: %libomp-compile && env OMP_THREAD_LIMIT=2 %libomp-run | FileCheck %s3// REQUIRES: ompt4// clang-format on5#include "callback.h"6 7int main() {8  omp_set_dynamic(1);9 10#pragma omp parallel num_threads(4)11  {12    print_ids(0);13    print_ids(1);14  }15  print_fuzzy_address(1);16 17  // clang-format off18  // 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 expected26 27  // CHECK: 0: NULL_POINTER=[[NULL:.*$]]28 29  // make sure initial data pointers are null30  // CHECK-NOT: 0: parallel_data initially not null31  // CHECK-NOT: 0: task_data initially not null32  // CHECK-NOT: 0: thread_data initially not null33 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 on44 45  return 0;46}47