#ifdef WITH_PYTHON #include #endif #include #ifdef WITH_CUDA #include #endif #include "macros.h" #ifdef _WIN32 #ifdef WITH_PYTHON #ifdef WITH_CUDA PyMODINIT_FUNC PyInit__version_cuda(void) { return NULL; } #else PyMODINIT_FUNC PyInit__version_cpu(void) { return NULL; } #endif #endif #endif namespace sparse { SPARSE_API int64_t cuda_version() noexcept { #ifdef WITH_CUDA return CUDA_VERSION; #else return -1; #endif } } // namespace sparse static auto registry = torch::RegisterOperators().op( "torch_sparse::cuda_version", &sparse::cuda_version);