aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/cuda/2 split/static/libsta.cu
blob: c0471d0484d33f00762588e2b176988d32dfe0a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <iostream>

__global__ void kernel (void){
}

int do_cuda_stuff() {
  kernel<<<1,1>>>();

  printf("Hello, World!\n");
  return 0;
}