Daily bump.
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / lib-78.c
blobd8cba4db538a05ec592ddf4382924301e5368c51
1 /* { dg-do run { target openacc_nvidia_accel_selected } } */
2 /* { dg-additional-options "-lcuda" } */
3 /* { dg-require-effective-target openacc_cuda } */
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <unistd.h>
8 #include <openacc.h>
9 #include <cuda.h>
10 #include "timer.h"
12 int
13 main (int argc, char **argv)
15 CUdevice dev;
16 CUfunction delay;
17 CUmodule module;
18 CUresult r;
19 CUstream stream;
20 unsigned long *a, *d_a, dticks;
21 int nbytes;
22 float atime, dtime;
23 void *kargs[2];
24 int clkrate;
25 int devnum, nprocs;
27 acc_init (acc_device_nvidia);
29 devnum = acc_get_device_num (acc_device_nvidia);
31 r = cuDeviceGet (&dev, devnum);
32 if (r != CUDA_SUCCESS)
34 fprintf (stderr, "cuDeviceGet failed: %d\n", r);
35 abort ();
38 r =
39 cuDeviceGetAttribute (&nprocs, CU_DEVICE_ATTRIBUTE_MULTIPROCESSOR_COUNT,
40 dev);
41 if (r != CUDA_SUCCESS)
43 fprintf (stderr, "cuDeviceGetAttribute failed: %d\n", r);
44 abort ();
47 r = cuDeviceGetAttribute (&clkrate, CU_DEVICE_ATTRIBUTE_CLOCK_RATE, dev);
48 if (r != CUDA_SUCCESS)
50 fprintf (stderr, "cuDeviceGetAttribute failed: %d\n", r);
51 abort ();
54 r = cuModuleLoad (&module, "subr.ptx");
55 if (r != CUDA_SUCCESS)
57 fprintf (stderr, "cuModuleLoad failed: %d\n", r);
58 abort ();
61 r = cuModuleGetFunction (&delay, module, "delay");
62 if (r != CUDA_SUCCESS)
64 fprintf (stderr, "cuModuleGetFunction failed: %d\n", r);
65 abort ();
68 nbytes = nprocs * sizeof (unsigned long);
70 dtime = 200.0;
72 dticks = (unsigned long) (dtime * clkrate);
74 a = (unsigned long *) malloc (nbytes);
75 d_a = (unsigned long *) acc_malloc (nbytes);
77 acc_map_data (a, d_a, nbytes);
79 kargs[0] = (void *) &d_a;
80 kargs[1] = (void *) &dticks;
82 stream = (CUstream) acc_get_cuda_stream (0);
83 if (stream != NULL)
84 abort ();
86 r = cuStreamCreate (&stream, CU_STREAM_DEFAULT);
87 if (r != CUDA_SUCCESS)
89 fprintf (stderr, "cuStreamCreate failed: %d\n", r);
90 abort ();
93 if (!acc_set_cuda_stream (0, stream))
94 abort ();
96 init_timers (1);
98 start_timer (0);
100 r = cuLaunchKernel (delay, 1, 1, 1, 1, 1, 1, 0, stream, kargs, 0);
101 if (r != CUDA_SUCCESS)
103 fprintf (stderr, "cuLaunchKernel failed: %d\n", r);
104 abort ();
107 acc_wait_all ();
109 atime = stop_timer (0);
111 if (atime < dtime)
113 fprintf (stderr, "actual time < delay time\n");
114 abort ();
117 start_timer (0);
119 acc_wait_all ();
121 atime = stop_timer (0);
123 if (0.010 < atime)
125 fprintf (stderr, "actual time too long\n");
126 abort ();
129 acc_unmap_data (a);
131 fini_timers ();
133 free (a);
134 acc_free (d_a);
136 acc_shutdown (acc_device_nvidia);
138 exit (0);
141 /* { dg-output "" } */