[Openmp-commits] [openmp] a4dcfbc - [OpenMP][AIX] XFAIL capacity tests on AIX in 32-bit (#83014)

via Openmp-commits openmp-commits at lists.llvm.org
Mon Feb 26 10:13:10 PST 2024


Author: Xing Xue
Date: 2024-02-26T13:13:05-05:00
New Revision: a4dcfbcb786f69ab8bab35f41e725e592fbac3fb

URL: https://github.com/llvm/llvm-project/commit/a4dcfbcb786f69ab8bab35f41e725e592fbac3fb
DIFF: https://github.com/llvm/llvm-project/commit/a4dcfbcb786f69ab8bab35f41e725e592fbac3fb.diff

LOG: [OpenMP][AIX] XFAIL capacity tests on AIX in 32-bit (#83014)

This patch XFAILs two capacity tests on AIX in 32-bit because running
out resource with `4 x omp_get_max_threads()` in 32-bit mode.

Added: 
    

Modified: 
    openmp/runtime/test/tasking/hidden_helper_task/capacity_mix_threads.cpp
    openmp/runtime/test/tasking/hidden_helper_task/capacity_nthreads.cpp

Removed: 
    


################################################################################
diff  --git a/openmp/runtime/test/tasking/hidden_helper_task/capacity_mix_threads.cpp b/openmp/runtime/test/tasking/hidden_helper_task/capacity_mix_threads.cpp
index 776aee9d8e2cac..3f2ceef0c4add4 100644
--- a/openmp/runtime/test/tasking/hidden_helper_task/capacity_mix_threads.cpp
+++ b/openmp/runtime/test/tasking/hidden_helper_task/capacity_mix_threads.cpp
@@ -1,4 +1,7 @@
 // RUN: %libomp-cxx-compile-and-run
+//
+// AIX runs out of resource in 32-bit with 4*omp_get_max_threads() threads.
+// XFAIL: aix && ppc
 
 #include <omp.h>
 

diff  --git a/openmp/runtime/test/tasking/hidden_helper_task/capacity_nthreads.cpp b/openmp/runtime/test/tasking/hidden_helper_task/capacity_nthreads.cpp
index b551318a72f3f9..f7405d00255cb9 100644
--- a/openmp/runtime/test/tasking/hidden_helper_task/capacity_nthreads.cpp
+++ b/openmp/runtime/test/tasking/hidden_helper_task/capacity_nthreads.cpp
@@ -1,4 +1,7 @@
 // RUN: %libomp-cxx-compile-and-run
+//
+// AIX runs out of resource in 32-bit with 4*omp_get_max_threads() threads.
+// XFAIL: aix && ppc
 
 #include <omp.h>
 


        


More information about the Openmp-commits mailing list