[Openmp-commits] [PATCH] D50085: [tests] Add annotations for taskloop features

Jonas Hahnfeld via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Thu Aug 2 07:34:26 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rOMP338720: [tests] Add annotations for taskloop features (authored by Hahnfeld, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D50085?vs=158325&id=158752#toc

Repository:
  rOMP OpenMP

https://reviews.llvm.org/D50085

Files:
  runtime/test/ompt/tasks/taskloop.c
  runtime/test/tasking/omp_taskloop_grainsize.c
  runtime/test/tasking/omp_taskloop_num_tasks.c


Index: runtime/test/ompt/tasks/taskloop.c
===================================================================
--- runtime/test/ompt/tasks/taskloop.c
+++ runtime/test/ompt/tasks/taskloop.c
@@ -1,6 +1,12 @@
 // RUN: %libomp-compile-and-run | FileCheck %s
 // RUN: %libomp-compile-and-run | FileCheck --check-prefix=TASKS %s
 // REQUIRES: ompt
+
+// These compilers don't support the taskloop construct
+// UNSUPPORTED: gcc-4, gcc-5, icc-16
+// GCC 6 has support for taskloops, but at least 6.3.0 is crashing on this test
+// UNSUPPORTED: gcc-6
+
 #include "callback.h"
 #include <omp.h>
 
Index: runtime/test/tasking/omp_taskloop_num_tasks.c
===================================================================
--- runtime/test/tasking/omp_taskloop_num_tasks.c
+++ runtime/test/tasking/omp_taskloop_num_tasks.c
@@ -1,5 +1,9 @@
 // RUN: %libomp-compile-and-run
 // RUN: %libomp-compile && env KMP_TASKLOOP_MIN_TASKS=1 %libomp-run
+
+// These compilers don't support the taskloop construct
+// UNSUPPORTED: gcc-4, gcc-5, icc-16
+
 /*
  * Test for taskloop
  * Method: caculate how many times the iteration space is dispatched
Index: runtime/test/tasking/omp_taskloop_grainsize.c
===================================================================
--- runtime/test/tasking/omp_taskloop_grainsize.c
+++ runtime/test/tasking/omp_taskloop_grainsize.c
@@ -1,5 +1,11 @@
 // RUN: %libomp-compile-and-run
 // RUN: %libomp-compile && env KMP_TASKLOOP_MIN_TASKS=1 %libomp-run
+
+// These compilers don't support the taskloop construct
+// UNSUPPORTED: gcc-4, gcc-5, icc-16
+// GCC 6 has support for taskloops, but at least 6.3.0 is crashing on this test
+// UNSUPPORTED: gcc-6
+
 /*
  * Test for taskloop
  * Method: caculate how many times the iteration space is dispatched


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50085.158752.patch
Type: text/x-patch
Size: 1760 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20180802/40a37609/attachment.bin>


More information about the Openmp-commits mailing list