Files
pytorch/torch/csrc/utils/cuda_enabled.h

14 lines
170 B
C++

#pragma once
namespace torch::utils {
inline constexpr bool cuda_enabled() {
#ifdef USE_CUDA
return true;
#else
return false;
#endif
}
} // namespace torch::utils