Sign in
qemu
/
meson
/
bcb82b390a382e10b6dd5a8e27727b31ada811b1
/
.
/
test cases
/
cuda
/
5 threads
/
shared
/
kernels.cu
blob: 5cda629d8f1a0d155c4b539e40b511e015e633b8 [
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
();
}