cec41816c1
libgomp/ PR libgomp/92503 * oacc-mem.c (acc_free): Error out instead of 'acc_unmap_data'. * testsuite/libgomp.oacc-c-c++-common/acc_free-pr92503-1.c: New file. * testsuite/libgomp.oacc-c-c++-common/acc_free-pr92503-2.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/acc_free-pr92503-3-2.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/acc_free-pr92503-3.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/acc_free-pr92503-4-2.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/acc_free-pr92503-4.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/clauses-1.c: Adjust. * testsuite/libgomp.oacc-c-c++-common/context-1.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/context-2.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/context-3.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/context-4.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/lib-13.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/lib-14.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/lib-18.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/lib-91.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/nested-1.c: Likewise. From-SVN: r279146
87 lines
1.4 KiB
C
87 lines
1.4 KiB
C
/* { dg-do run { target openacc_nvidia_accel_selected } } */
|
|
/* { dg-additional-options "-lcuda" } */
|
|
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <openacc.h>
|
|
#include <sys/time.h>
|
|
#include <stdio.h>
|
|
#include <cuda.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
const int N = 1024 * 1024;
|
|
int i;
|
|
unsigned char *h;
|
|
void *d;
|
|
float async, sync;
|
|
struct timeval start, stop;
|
|
CUresult r;
|
|
CUstream s;
|
|
|
|
acc_init (acc_device_nvidia);
|
|
|
|
h = (unsigned char *) malloc (N);
|
|
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
h[i] = i;
|
|
}
|
|
|
|
d = acc_malloc (N);
|
|
|
|
acc_map_data (h, d, N);
|
|
|
|
gettimeofday (&start, NULL);
|
|
|
|
for (i = 0; i < 100; i++)
|
|
{
|
|
#pragma acc update device(h[0:N])
|
|
}
|
|
|
|
gettimeofday (&stop, NULL);
|
|
|
|
sync = (float) (stop.tv_sec - start.tv_sec);
|
|
sync += (float) ((stop.tv_usec - start.tv_usec) / 1000000.0);
|
|
|
|
gettimeofday (&start, NULL);
|
|
|
|
r = cuStreamCreate (&s, CU_STREAM_DEFAULT);
|
|
if (r != CUDA_SUCCESS)
|
|
{
|
|
fprintf (stderr, "cuStreamCreate failed: %d\n", r);
|
|
abort ();
|
|
}
|
|
|
|
if (!acc_set_cuda_stream (0, s))
|
|
abort ();
|
|
|
|
for (i = 0; i < 100; i++)
|
|
{
|
|
#pragma acc update device(h[0:N]) async(0)
|
|
}
|
|
|
|
acc_wait_all ();
|
|
|
|
gettimeofday (&stop, NULL);
|
|
|
|
async = (float) (stop.tv_sec - start.tv_sec);
|
|
async += (float) ((stop.tv_usec - start.tv_usec) / 1000000.0);
|
|
|
|
if (async > (sync * 1.5))
|
|
abort ();
|
|
|
|
acc_unmap_data (h);
|
|
|
|
acc_free (d);
|
|
|
|
free (h);
|
|
|
|
acc_shutdown (acc_device_nvidia);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-output "" } */
|