[Openmp-commits] [openmp] [OpenMP][Runtime][test] Fix ompt task testcase fail randomly (PR #72337)

via Openmp-commits openmp-commits at lists.llvm.org
Tue Nov 28 01:22:39 PST 2023


https://github.com/MANGOPIE3 updated https://github.com/llvm/llvm-project/pull/72337

>From 9953d655334b50b98fa8a44b698d0c0916ec4bee Mon Sep 17 00:00:00 2001
From: zhoujing <zhoujing106 at huawei.com>
Date: Wed, 15 Nov 2023 11:28:28 +0800
Subject: [PATCH] [OpenMP][Runtime][test] Fix ompt task testcase fail randomly

---
 openmp/runtime/test/ompt/tasks/explicit_task_thread_num.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/openmp/runtime/test/ompt/tasks/explicit_task_thread_num.c b/openmp/runtime/test/ompt/tasks/explicit_task_thread_num.c
index 9f2d4abfbf74776..a40c9282d47947d 100644
--- a/openmp/runtime/test/ompt/tasks/explicit_task_thread_num.c
+++ b/openmp/runtime/test/ompt/tasks/explicit_task_thread_num.c
@@ -55,14 +55,12 @@ int main()
 
   // parallel region used only to determine worker thread id
   // CHECK: {{^}}[[MASTER_ID]]: ompt_event_parallel_begin
-  // CHECK-DAG: {{^}}[[MASTER_ID]]: ompt_event_implicit_task_begin
-  // CHECK-DAG: {{^}}[[WORKER_ID:[0-9]+]]: ompt_event_implicit_task_begin
+  // CHECK-DAG: {{^}}[[WID:[0-9]+]]: ompt_event_implicit_task_begin{{.*}}thread_num=1
 
   // thread_num must be equal to 1 for both explicit and the implicit tasks
-  // CHECK: {{^}}[[WORKER_ID]]: ancestor_level=0 id=1 task_type=ompt_task_explicit
+  // CHECK: {{^}}[[WID]]: ancestor_level=0 id=1 task_type=ompt_task_explicit
   // CHECK-SAME: thread_num=1
-  // CHECK: {{^}}[[WORKER_ID]]: ancestor_level=1 id=0 task_type=ompt_task_implicit
+  // CHECK: {{^}}[[WID]]: ancestor_level=1 id=0 task_type=ompt_task_implicit
   // CHECK-SAME: thread_num=1
-
   return 0;
 }



More information about the Openmp-commits mailing list