From 3ede454d42b3286b13bda81627857961e124f728 Mon Sep 17 00:00:00 2001 From: Won-Kyu Park Date: Tue, 2 Jan 2024 17:03:21 +0900 Subject: [PATCH] call find_file_recursive() without ext --- bitsandbytes/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitsandbytes/__main__.py b/bitsandbytes/__main__.py index 05dce5ac7..8f58e1665 100644 --- a/bitsandbytes/__main__.py +++ b/bitsandbytes/__main__.py @@ -60,7 +60,7 @@ def generate_bug_report_information(): try: if isdir(path): print_header(f"{path} CUDA PATHS") - paths = find_file_recursive(path, '*cuda*so') + paths = find_file_recursive(path, '*cuda*') print(paths) except: print(f'Could not read LD_LIBRARY_PATH: {path}')