Added Cuda

Fixes: #537
Co-Authored-By: BlahGeek <i@blahgeek.com>
This commit is contained in:
Richie Bendall
2020-04-01 04:51:16 +13:00
parent 6f1c1de713
commit e46f917916
2 changed files with 11 additions and 0 deletions

10
c/cuda.cu Normal file
View File

@@ -0,0 +1,10 @@
#include <stdio.h>
__global__ void hello_world(){
printf("Hello World\n");
}
int main() {
hello_world<<<1,1>>>();
return 0;
}