diff options
author | Tim Dettmers <tim.dettmers@gmail.com> | 2022-08-05 07:13:24 -0700 |
---|---|---|
committer | Tim Dettmers <tim.dettmers@gmail.com> | 2022-08-05 07:13:24 -0700 |
commit | e35337f05eefc003b47fe83b60601e37010c4f21 (patch) | |
tree | 06db6cffbba8fc0e0151f2a7150ec085c057dd26 /bitsandbytes/cuda_setup/paths.py | |
parent | 8f84674d6774c351b1e69dfede2c11a370e334b9 (diff) |
Now determining cuda version via libcudart.so call.
Diffstat (limited to 'bitsandbytes/cuda_setup/paths.py')
-rw-r--r-- | bitsandbytes/cuda_setup/paths.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitsandbytes/cuda_setup/paths.py b/bitsandbytes/cuda_setup/paths.py index c4a7465..b5e04f8 100644 --- a/bitsandbytes/cuda_setup/paths.py +++ b/bitsandbytes/cuda_setup/paths.py @@ -123,4 +123,4 @@ def determine_cuda_runtime_lib_path() -> Union[Path, None]: warn_in_case_of_duplicates(cuda_runtime_libs) - return next(iter(cuda_runtime_libs)) if cuda_runtime_libs else set() + return next(iter(cuda_runtime_libs)) if cuda_runtime_libs else None |