* testsuite/libgomp.oacc-c-c++-common/reduction-5.c: Set sane
vector_length.
* testsuite/libgomp.oacc-fortran/reduction-6.f90: Likewise.
From-SVN: r229100
+2015-10-20 Nathan Sidwell <nathan@codesourcery.com>
+
+ * testsuite/libgomp.oacc-c-c++-common/reduction-5.c: Set sane
+ vector_length.
+ * testsuite/libgomp.oacc-fortran/reduction-6.f90: Likewise.
+
2015-10-14 Ilya Verbin <ilya.verbin@intel.com>
Aleksander Ivanushenko <aleksander.ivanushenko@intel.com>
int n = 100;
int i;
-#pragma acc parallel vector_length (1000)
+#pragma acc parallel vector_length (32)
#pragma acc loop reduction (+:s1, s2)
for (i = 0; i < n; i++)
{
abort ();
return 0;
-}
\ No newline at end of file
+}
vs1 = 0
vs2 = 0
- !$acc parallel vector_length (1000)
+ !$acc parallel vector_length (32)
!$acc loop reduction(+:s1, s2)
do i = 1, n
s1 = s1 + 1