Sign in
android
/
platform
/
external
/
pytorch
/
c622559968
/
.
/
torch
/
csrc
/
utils
/
cuda_enabled.h
blob: e27c168a8ef46a5860f793e79e9be05a80f27e18 [
file
] [
log
] [
blame
]
#pragma
once
namespace
torch
{
namespace
utils
{
static
inline
bool
cuda_enabled
()
{
#ifdef
USE_CUDA
return
true
;
#else
return
false
;
#endif
}
}
// namespace utils
}
// namespace torch