mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-08 09:07:53 +00:00
212 lines
3.9 KiB
C
212 lines
3.9 KiB
C
|
/* { dg-do run { target openacc_nvidia_accel_selected } } */
|
||
|
/* { dg-additional-options "-lcuda" } */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <unistd.h>
|
||
|
#include <openacc.h>
|
||
|
#include <cuda.h>
|
||
|
#include "timer.h"
|
||
|
|
||
|
int
|
||
|
main (int argc, char **argv)
|
||
|
{
|
||
|
CUdevice dev;
|
||
|
CUfunction delay;
|
||
|
CUmodule module;
|
||
|
CUresult r;
|
||
|
int N;
|
||
|
int i;
|
||
|
CUstream *streams, stream;
|
||
|
unsigned long *a, *d_a, dticks;
|
||
|
int nbytes;
|
||
|
float atime, dtime;
|
||
|
void *kargs[2];
|
||
|
int clkrate;
|
||
|
int devnum, nprocs;
|
||
|
|
||
|
acc_init (acc_device_nvidia);
|
||
|
|
||
|
devnum = acc_get_device_num (acc_device_nvidia);
|
||
|
|
||
|
r = cuDeviceGet (&dev, devnum);
|
||
|
if (r != CUDA_SUCCESS)
|
||
|
{
|
||
|
fprintf (stderr, "cuDeviceGet failed: %d\n", r);
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
r =
|
||
|
cuDeviceGetAttribute (&nprocs, CU_DEVICE_ATTRIBUTE_MULTIPROCESSOR_COUNT,
|
||
|
dev);
|
||
|
if (r != CUDA_SUCCESS)
|
||
|
{
|
||
|
fprintf (stderr, "cuDeviceGetAttribute failed: %d\n", r);
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
r = cuDeviceGetAttribute (&clkrate, CU_DEVICE_ATTRIBUTE_CLOCK_RATE, dev);
|
||
|
if (r != CUDA_SUCCESS)
|
||
|
{
|
||
|
fprintf (stderr, "cuDeviceGetAttribute failed: %d\n", r);
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
r = cuModuleLoad (&module, "subr.ptx");
|
||
|
if (r != CUDA_SUCCESS)
|
||
|
{
|
||
|
fprintf (stderr, "cuModuleLoad failed: %d\n", r);
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
r = cuModuleGetFunction (&delay, module, "delay");
|
||
|
if (r != CUDA_SUCCESS)
|
||
|
{
|
||
|
fprintf (stderr, "cuModuleGetFunction failed: %d\n", r);
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
nbytes = nprocs * sizeof (unsigned long);
|
||
|
|
||
|
dtime = 500.0;
|
||
|
|
||
|
dticks = (unsigned long) (dtime * clkrate);
|
||
|
|
||
|
N = nprocs;
|
||
|
|
||
|
a = (unsigned long *) malloc (nbytes);
|
||
|
d_a = (unsigned long *) acc_malloc (nbytes);
|
||
|
|
||
|
acc_map_data (a, d_a, nbytes);
|
||
|
|
||
|
streams = (CUstream *) malloc (N * sizeof (void *));
|
||
|
|
||
|
for (i = 0; i < N; i++)
|
||
|
{
|
||
|
streams[i] = (CUstream) acc_get_cuda_stream (i);
|
||
|
if (streams[i] != NULL)
|
||
|
abort ();
|
||
|
|
||
|
r = cuStreamCreate (&streams[i], CU_STREAM_DEFAULT);
|
||
|
if (r != CUDA_SUCCESS)
|
||
|
{
|
||
|
fprintf (stderr, "cuStreamCreate failed: %d\n", r);
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
if (!acc_set_cuda_stream (i, streams[i]))
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
init_timers (1);
|
||
|
|
||
|
kargs[0] = (void *) &d_a;
|
||
|
kargs[1] = (void *) &dticks;
|
||
|
|
||
|
stream = (CUstream) acc_get_cuda_stream (N);
|
||
|
if (stream != NULL)
|
||
|
abort ();
|
||
|
|
||
|
r = cuStreamCreate (&stream, CU_STREAM_DEFAULT);
|
||
|
if (r != CUDA_SUCCESS)
|
||
|
{
|
||
|
fprintf (stderr, "cuStreamCreate failed: %d\n", r);
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
if (!acc_set_cuda_stream (N, stream))
|
||
|
abort ();
|
||
|
|
||
|
start_timer (0);
|
||
|
|
||
|
for (i = 0; i < N; i++)
|
||
|
{
|
||
|
r = cuLaunchKernel (delay, 1, 1, 1, 1, 1, 1, 0, streams[i], kargs, 0);
|
||
|
if (r != CUDA_SUCCESS)
|
||
|
{
|
||
|
fprintf (stderr, "cuLaunchKernel failed: %d\n", r);
|
||
|
abort ();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
acc_wait_all_async (N);
|
||
|
|
||
|
for (i = 0; i <= N; i++)
|
||
|
{
|
||
|
if (acc_async_test (i) != 0)
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
acc_wait (N);
|
||
|
|
||
|
for (i = 0; i <= N; i++)
|
||
|
{
|
||
|
if (acc_async_test (i) != 1)
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
atime = stop_timer (0);
|
||
|
|
||
|
if (atime < dtime)
|
||
|
{
|
||
|
fprintf (stderr, "actual time < delay time\n");
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
start_timer (0);
|
||
|
|
||
|
stream = (CUstream) acc_get_cuda_stream (N + 1);
|
||
|
if (stream != NULL)
|
||
|
abort ();
|
||
|
|
||
|
r = cuStreamCreate (&stream, CU_STREAM_DEFAULT);
|
||
|
if (r != CUDA_SUCCESS)
|
||
|
{
|
||
|
fprintf (stderr, "cuStreamCreate failed: %d\n", r);
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
if (!acc_set_cuda_stream (N + 1, stream))
|
||
|
abort ();
|
||
|
|
||
|
acc_wait_all_async (N + 1);
|
||
|
|
||
|
acc_wait (N + 1);
|
||
|
|
||
|
atime = stop_timer (0);
|
||
|
|
||
|
if (0.10 < atime)
|
||
|
{
|
||
|
fprintf (stderr, "actual time too long\n");
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
start_timer (0);
|
||
|
|
||
|
acc_wait_all_async (N);
|
||
|
|
||
|
acc_wait (N);
|
||
|
|
||
|
atime = stop_timer (0);
|
||
|
|
||
|
if (0.10 < atime)
|
||
|
{
|
||
|
fprintf (stderr, "actual time too long\n");
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
acc_unmap_data (a);
|
||
|
|
||
|
fini_timers ();
|
||
|
|
||
|
free (streams);
|
||
|
free (a);
|
||
|
acc_free (d_a);
|
||
|
|
||
|
acc_shutdown (acc_device_nvidia);
|
||
|
|
||
|
exit (0);
|
||
|
}
|
||
|
|
||
|
/* { dg-output "" } */
|