a105775825
Add some test-cases using vector_length 64. 2019-01-12 Tom de Vries <tdevries@suse.de> * testsuite/libgomp.oacc-c-c++-common/vector-length-64-1.c: New test. * testsuite/libgomp.oacc-c-c++-common/vector-length-64-2.c: New test. * testsuite/libgomp.oacc-c-c++-common/vector-length-64-3.c: New test. From-SVN: r267895
18 lines
384 B
C
18 lines
384 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
#pragma acc parallel vector_length (64) num_workers (16) /* { dg-warning "using num_workers \\(15\\), ignoring 16" "" { target openacc_nvidia_accel_configured } } */
|
|
{
|
|
#pragma acc loop worker
|
|
for (unsigned int i = 0; i < 32; i++)
|
|
#pragma acc loop vector
|
|
for (unsigned int j = 0; j < 64; j++)
|
|
;
|
|
}
|
|
|
|
return 0;
|
|
}
|