summaryrefslogtreecommitdiffstats
path: root/Tests/CudaOnly/DeviceLTO/file1.cu
blob: 703927cfd452a9308cfd9abdb2b6c72c737706a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifdef _WIN32
#  define EXPORT __declspec(dllexport)
#else
#  define EXPORT
#endif

extern __device__ int file2_func(int);
void __global__ kernel(int x)
{
  file2_func(x);
}

EXPORT int launch_kernel(int x)
{
  kernel<<<1, 1>>>(x);
  return x;
}