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

View File

@@ -180,6 +180,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Csharp](c/csharp.cs)
* [Cson](c/cson.cson)
* [Css](c/css.css)
* [Cuda](c/cuda.cu)
* [Cuneiform](c/cuneiform.cfl)
* [Curry](c/curry.curry)
* [Cypherneo4J](c/cypherNeo4j.cypher)

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;
}