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

__global__ void kernel (void){
}

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

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