summaryrefslogtreecommitdiff
path: root/bitsandbytes/cuda_setup/main.py
diff options
context:
space:
mode:
authorTom Aarsen <Cubiegamedev@gmail.com>2022-10-26 09:37:16 +0200
committerTom Aarsen <Cubiegamedev@gmail.com>2022-10-26 09:37:16 +0200
commitc584482f1f13e073dac714815f2d439fd66699d1 (patch)
tree2fe7a44e54149ef3621e5acabc5bba098b96a0d4 /bitsandbytes/cuda_setup/main.py
parenta371be302ddbdf3f36acef1a6fe365672099c9d9 (diff)
Resolve cases of CUDASetup.get_instance not being called when used
Diffstat (limited to 'bitsandbytes/cuda_setup/main.py')
-rw-r--r--bitsandbytes/cuda_setup/main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitsandbytes/cuda_setup/main.py b/bitsandbytes/cuda_setup/main.py
index f5abda2..8a5e25c 100644
--- a/bitsandbytes/cuda_setup/main.py
+++ b/bitsandbytes/cuda_setup/main.py
@@ -27,14 +27,14 @@ def check_cuda_result(cuda, result_val):
if result_val != 0:
error_str = ctypes.c_char_p()
cuda.cuGetErrorString(result_val, ctypes.byref(error_str))
- CUDASetup.get_instance.add_log_entry(f"CUDA exception! Error code: {error_str.value.decode()}")
+ CUDASetup.get_instance().add_log_entry(f"CUDA exception! Error code: {error_str.value.decode()}")
def get_cuda_version(cuda, cudart_path):
# https://docs.nvidia.com/cuda/cuda-runtime-api/group__CUDART____VERSION.html#group__CUDART____VERSION
try:
cudart = ctypes.CDLL(cudart_path)
except OSError:
- CUDASetup.get_instance.add_log_entry(f'ERROR: libcudart.so could not be read from path: {cudart_path}!')
+ CUDASetup.get_instance().add_log_entry(f'ERROR: libcudart.so could not be read from path: {cudart_path}!')
return None
version = ctypes.c_int()