Sign in
qemu
/
meson
/
refs/heads/gnuobjc
/
.
/
test cases
/
cuda
/
2 split
/
lib.cu
blob: 850d7ddfbb46d70fc506a17373068516a2c0cddc [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<iostream>
__global__
void
kernel
(
void
){
}
int
do_cuda_stuff
(
void
)
{
kernel
<<<
1
,
1
>>>();
printf
(
"Hello, World!\n"
);
return
0
;
}