summaryrefslogtreecommitdiffstats
path: root/Tests/CudaOnly/RuntimeControls/file2.cu
blob: ff68a702452cd821795305494cd5bbf1fcc69d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#ifdef _WIN32
#  define EXPORT __declspec(dllexport)
#else
#  define EXPORT
#endif

void __global__ file2_kernel(int x, int& r)
{
  r = -x;
}

EXPORT int file2_launch_kernel(int x)
{
  int r = 0;
  file2_kernel<<<1, 1>>>(x, r);
  return r;
}