summaryrefslogtreecommitdiff
path: root/test cases/cuda/1 simple/prog.cu
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/cuda/1 simple/prog.cu')
-rw-r--r--test cases/cuda/1 simple/prog.cu13
1 files changed, 13 insertions, 0 deletions
diff --git a/test cases/cuda/1 simple/prog.cu b/test cases/cuda/1 simple/prog.cu
new file mode 100644
index 000000000..ed21152af
--- /dev/null
+++ b/test cases/cuda/1 simple/prog.cu
@@ -0,0 +1,13 @@
+#include <stdio.h>
+#include <iostream>
+
+__global__ void kernel (void){
+
+}
+
+int main( void ) {
+ kernel<<<1,1>>>();
+ printf( "Hello, World!\n" );
+ return 0;
+}
+