bar.cu 153 B

123456789101112
  1. __device__ int foo_func(int);
  2. void __global__ bar_kernel(int x)
  3. {
  4. foo_func(x);
  5. }
  6. int launch_kernel(int x)
  7. {
  8. bar_kernel<<<1, 1>>>(x);
  9. return x;
  10. }