Commit ed17aa9a authored by blackhc's avatar blackhc
Browse files

Don't mark it as failure though.

parent 7b39a551
...@@ -147,7 +147,6 @@ def evaluate_cuda_setup(): ...@@ -147,7 +147,6 @@ def evaluate_cuda_setup():
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):
failure = True
cuda_setup.add_log_entry("WARNING: Compute capability < 7.5 detected! Proceeding to load CPU-only library...", is_warning=True) cuda_setup.add_log_entry("WARNING: Compute capability < 7.5 detected! Proceeding to load CPU-only library...", is_warning=True)
else: else:
has_cublaslt = True has_cublaslt = True
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment