Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
2ab43d78e1fe0f027f48a032d74c51a23c76302f
/
.
/
Tests
/
CudaOnly
/
Unity
/
a.cu
blob: 7f3752c7e49b9b7260de815d7d36677825b78cce [
file
]
__device__
int
function
(
int
a
,
int
b
);
__global__
void
kernel
()
{
function
(
2
,
3
);
}
void
test_unity_functions
()
{
kernel
<<<
1
,
1
,
1
>>>();
}