Sign in
qemu
/
meson
/
refs/heads/xcodez
/
.
/
test cases
/
cuda
/
5 threads
/
shared
/
kernels.cu
blob: 41a95536fc5a78d99a343cf1bdcb35e5c5cc9ede [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<cuda_runtime.h>
#include
"kernels.h"
TAG_HIDDEN __global__
void
kernel
(
void
){
}
TAG_PUBLIC
int
run_tests
(
void
)
{
kernel
<<<
1
,
1
>>>();
return
(
int
)
cudaDeviceSynchronize
();
}