aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/cuda/12 cuda dependency (mixed)/kernel.cu
blob: 7daaa6839ca39563147b6c35795f7e03f049ae91 (plain)
1
2
3
4
5
6
7
8
#include <cuda_runtime.h>

__global__ void kernel (void){
}

void do_cuda_stuff(void) {
  kernel<<<1,1>>>();
}