File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -97,13 +97,12 @@ def print_debug_info() -> None:
9797
9898from . import COMPILED_WITH_CUDA , PACKAGE_GITHUB_URL
9999from .cuda_setup .env_vars import to_be_ignored
100- from .cuda_setup .main import get_compute_capabilities , get_cuda_lib_handle
100+ from .cuda_setup .main import get_compute_capabilities
101101
102102
103103print_header ("OTHER" )
104104print (f"COMPILED_WITH_CUDA = { COMPILED_WITH_CUDA } " )
105- cuda = get_cuda_lib_handle ()
106- print (f"COMPUTE_CAPABILITIES_PER_GPU = { get_compute_capabilities (cuda )} " )
105+ print (f"COMPUTE_CAPABILITIES_PER_GPU = { get_compute_capabilities ()} " )
107106print_header ("" )
108107print_header ("DEBUG INFO END" )
109108print_header ("" )
Original file line number Diff line number Diff line change @@ -359,4 +359,4 @@ def evaluate_cuda_setup():
359359 "if not has_cublaslt (CC < 7.5), then we have to choose _nocublaslt.so"
360360 binary_name = f"libbitsandbytes_cuda{ cuda_version_string } _nocublaslt.so"
361361
362- return binary_name , cudart_path , cc , cuda_version_string
362+ return binary_name , cudart_path , cc , cuda_version_string
You can’t perform that action at this time.
0 commit comments