1 2 3 4 5 6 7 8
#include <cuda_runtime.h> __global__ void kernel (void){ } void do_cuda_stuff(void) { kernel<<<1,1>>>(); }