DEBSOURCES
Skip Quicknav
sources / pytorch / 1.7.1-7 / torch / csrc / utils / cuda_enabled.h
123456789101112131415
#pragma once namespace torch { namespace utils { static inline bool cuda_enabled() { #ifdef USE_CUDA return true; #else return false; #endif } } }