aboutsummaryrefslogtreecommitdiff
path: root/test cases/cuda/2 split/lib.cu
blob: 850d7ddfbb46d70fc506a17373068516a2c0cddc (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(void) {
  kernel<<<1,1>>>();

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