commit
ec5fbf4cc4
|
@ -42,7 +42,7 @@ print(
|
||||||
)
|
)
|
||||||
|
|
||||||
print_header("OTHER")
|
print_header("OTHER")
|
||||||
print(f"{COMPILED_WITH_CUDA = }")
|
print(f"COMPILED_WITH_CUDA = {COMPILED_WITH_CUDA}")
|
||||||
cuda = get_cuda_lib_handle()
|
cuda = get_cuda_lib_handle()
|
||||||
print(f"COMPUTE_CAPABILITIES_PER_GPU = {get_compute_capabilities(cuda)}")
|
print(f"COMPUTE_CAPABILITIES_PER_GPU = {get_compute_capabilities(cuda)}")
|
||||||
print_header("")
|
print_header("")
|
||||||
|
|
|
@ -150,7 +150,7 @@ def is_cublasLt_compatible(cc):
|
||||||
if cc is not None:
|
if cc is not None:
|
||||||
cc_major, cc_minor = cc.split('.')
|
cc_major, cc_minor = cc.split('.')
|
||||||
if int(cc_major) < 7 or (int(cc_major) == 7 and int(cc_minor) < 5):
|
if int(cc_major) < 7 or (int(cc_major) == 7 and int(cc_minor) < 5):
|
||||||
cuda_setup.add_log_entry("WARNING: Compute capability < 7.5 detected! Only slow 8-bit matmul is supported for your GPU!", is_warning=True)
|
CUDASetup.get_instance().add_log_entry("WARNING: Compute capability < 7.5 detected! Only slow 8-bit matmul is supported for your GPU!", is_warning=True)
|
||||||
else:
|
else:
|
||||||
has_cublaslt = True
|
has_cublaslt = True
|
||||||
return has_cublaslt
|
return has_cublaslt
|
||||||
|
|
Loading…
Reference in New Issue
Block a user