summaryrefslogtreecommitdiff
path: root/test cases/cuda/1 simple/prog.cu
blob: ed21152af1a5128253f25ffbba827e036756dc75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <iostream>

__global__ void kernel (void){

}

int main( void ) {
      kernel<<<1,1>>>();
      printf( "Hello, World!\n" ); 
      return 0;
}