Fix libgomp.oacc-c-c++-common/{loop-red-g-1,routine-g-1}.c for non-nvidia devices
authorTom de Vries <tom@codesourcery.com>
Thu, 5 Oct 2017 08:31:46 +0000 (08:31 +0000)
committerTom de Vries <vries@gcc.gnu.org>
Thu, 5 Oct 2017 08:31:46 +0000 (08:31 +0000)
2017-10-05  Tom de Vries  <tom@codesourcery.com>

* testsuite/libgomp.oacc-c-c++-common/loop-red-g-1.c (main): Remove
vector_length(32) clause from acc parallel directive.
* testsuite/libgomp.oacc-c-c++-common/routine-g-1.c (main): Same.

From-SVN: r253439

libgomp/ChangeLog
libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-g-1.c
libgomp/testsuite/libgomp.oacc-c-c++-common/routine-g-1.c

index 6441453334da81a249ff6548e67f93f5ea256f50..fe97eeec790c1f4521fb526b897edcfb88180e1a 100644 (file)
@@ -1,3 +1,9 @@
+2017-10-05  Tom de Vries  <tom@codesourcery.com>
+
+       * testsuite/libgomp.oacc-c-c++-common/loop-red-g-1.c (main): Remove
+       vector_length(32) clause from acc parallel directive.
+       * testsuite/libgomp.oacc-c-c++-common/routine-g-1.c (main): Same.
+
 2017-10-04  Tom de Vries  <tom@codesourcery.com>
 
        * testsuite/libgomp.oacc-c-c++-common/par-loop-comb-reduction-3.c
index d241d4136254c1423fc559bed64344cf4bec393a..929e01c447aca7d998a27cd601849abd0024ac71 100644 (file)
@@ -11,7 +11,7 @@ int main ()
   int ondev = 0;
   int t = 0, h = 0;
   
-#pragma acc parallel num_gangs(32) vector_length(32) copy(ondev)
+#pragma acc parallel num_gangs(32) copy(ondev)
   {
 #pragma acc loop gang  reduction (+:t)
     for (unsigned ix = 0; ix < N; ix++)
index 9d14c3bd3130ddab83c8223583999b5b3420f3ef..b6ab7134c0bc640620970e8aa56b76637ffdb2fd 100644 (file)
@@ -36,7 +36,7 @@ int main ()
   for (ix = 0; ix < N;ix++)
     ary[ix] = -1;
   
-#pragma acc parallel num_gangs(32) vector_length(32) copy(ary) copy(ondev)
+#pragma acc parallel num_gangs(32) copy(ary) copy(ondev)
   {
     ondev = __builtin_acc_on_device (5);
     gang (ary);