blob: 5ec2aba3bded4a49446194b66fe221589bd503b9 [file] [log] [blame]
#pragma once
namespace torch {
namespace utils {
static inline bool cuda_enabled() {
#ifdef WITH_CUDA
return true;
#else
return false;
#endif
}
}
}