Sign in
fuchsia
/
third_party
/
cmake
/
7f7255e3770b961cc2108776e3997b5e4d3e1585
/
.
/
Tests
/
CudaOnly
/
DeviceLTO
/
file1.cu
blob: 5ca000de8185df3ba93bb639ca93b9118a9553de [
file
] [
log
] [
blame
]
extern
__device__
int
file2_func
(
int
);
void
__global__ kernel
(
int
x
)
{
file2_func
(
x
);
}
int
launch_kernel
(
int
x
)
{
kernel
<<<
1
,
1
>>>(
x
);
return
x
;
}