From 986881cc89b729d2f23364c04eb908371567d872 Mon Sep 17 00:00:00 2001 From: "Noah D. Brenowitz" Date: Wed, 11 Sep 2024 00:44:15 -0600 Subject: [PATCH] remove cuda runtime check this prevents the code from building in a docker image. --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index 0bbdabb..c9928df 100644 --- a/setup.py +++ b/setup.py @@ -74,9 +74,6 @@ def get_compiler(): import torch from torch.utils.cpp_extension import CUDAExtension - if not torch.cuda.is_available(): - raise ImportError() - ext_modules.append( CUDAExtension( name='healpixpad_cuda',