Sign in
◑
Theme
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
e9e94de9cb6661e5a7e16af7a448c1be6e1512cd
/
.
/
Tests
/
CudaOnly
/
SeparateCompilationTargetObjects
/
foo.cu
blob: 88acacaffc952ba8098778c0ef1ecd6a14f18cb6 [
file
]
#ifdef
_WIN32
# define EXPORT __declspec(dllexport)
#else
# define EXPORT __attribute__((__visibility__("default")))
#endif
__global__
void
k1
()
{
}
EXPORT
int
foo
()
{
k1
<<<
1
,
1
>>>();
return
0
;
}