summaryrefslogtreecommitdiffstats
path: root/Tests/CudaOnly/DeviceLTO/file1.cu
blob: 5ca000de8185df3ba93bb639ca93b9118a9553de (plain)
1
2
3
4
5
6
7
8
9
10
11
extern __device__ int file2_func(int);
void __global__ kernel(int x)
{
  file2_func(x);
}

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