summaryrefslogtreecommitdiff
path: root/bitsandbytes/cuda_setup
diff options
context:
space:
mode:
authorTim Dettmers <tim.dettmers@gmail.com>2022-08-16 10:57:10 -0700
committerTim Dettmers <tim.dettmers@gmail.com>2022-08-16 10:57:10 -0700
commit111b8764492fd1f9921caae64ce7d7d3ac7ef183 (patch)
tree5e2f62b52708cb17e30acd26e74743d840afdbd7 /bitsandbytes/cuda_setup
parent1ed2fa2f218d8dac401f3315420ffec92014c124 (diff)
parent1ced47c5043ed88b78c288f55f43ec3e66a0f765 (diff)
Merge branch 'cuda-bin-switch-and-cli' of github.com:TimDettmers/bitsandbytes into cuda-bin-switch-and-cli
Diffstat (limited to 'bitsandbytes/cuda_setup')
-rw-r--r--bitsandbytes/cuda_setup/main.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/bitsandbytes/cuda_setup/main.py b/bitsandbytes/cuda_setup/main.py
index f1c845c..1f2ceb4 100644
--- a/bitsandbytes/cuda_setup/main.py
+++ b/bitsandbytes/cuda_setup/main.py
@@ -45,6 +45,9 @@ def get_cuda_version(cuda, cudart_path):
major = version//1000
minor = (version-(major*1000))//10
+ if major < 11:
+ print('CUDA SETUP: CUDA version lower than 11 are currenlty not supported!')
+
return f'{major}{minor}'
@@ -110,6 +113,10 @@ def get_compute_capability(cuda):
def evaluate_cuda_setup():
+ print('')
+ print('='*35 + 'BUG REPORT' + '='*35)
+ print('Welcome to bitsandbytes. For bug reports, please use this form: https://docs.google.com/forms/d/e/1FAIpQLScPB8emS3Thkp66nvqwmjTEgxp8Y9ufuWTzFyr9kJ5AoI47dQ/viewform?usp=sf_link')
+ print('='*80)
binary_name = "libbitsandbytes_cpu.so"
cudart_path = determine_cuda_runtime_lib_path()
if cudart_path is None:
@@ -121,6 +128,7 @@ def evaluate_cuda_setup():
print(f"CUDA SETUP: CUDA path found: {cudart_path}")
cuda = get_cuda_lib_handle()
cc = get_compute_capability(cuda)
+ print(f"CUDA SETUP: Highest compute capability among GPUs detected: {cc}")
cuda_version_string = get_cuda_version(cuda, cudart_path)