Skip to content

Commit

Permalink
call find_file_recursive() without ext
Browse files Browse the repository at this point in the history
  • Loading branch information
wkpark committed Jan 24, 2024
1 parent 6812e68 commit 3ede454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitsandbytes/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}')
Expand Down

0 comments on commit 3ede454

Please sign in to comment.