Sign in
chromium
/
external
/
github.com
/
mesonbuild
/
meson
/
refs/heads/upstream/fixboostpython
/
.
/
test cases
/
cuda
/
2 split
/
lib.cu
blob: e8919335ff716261ffc1b0fe00ca1ce332232a01 [
file
] [
edit
]
#include
<stdio.h>
#include
<iostream>
__global__
void
kernel
(
void
){
}
int
do_cuda_stuff
(
void
)
{
kernel
<<<
1
,
1
>>>();
printf
(
"Hello, World!\n"
);
return
0
;
}