mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
12 lines
155 B
Plaintext
12 lines
155 B
Plaintext
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;
|
|
}
|