Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
bitsandbytes
Commits
5b356245
Unverified
Commit
5b356245
authored
Mar 26, 2024
by
Titus
Committed by
GitHub
Mar 26, 2024
Browse files
Merge pull request #1134 from matthewdouglas/fix-vscode-diagnostics-windows
Fix diagnostics error within vscode on windows
parents
c6e31907
3ccb1308
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
bitsandbytes/diagnostics/cuda.py
bitsandbytes/diagnostics/cuda.py
+1
-1
No files found.
bitsandbytes/diagnostics/cuda.py
View file @
5b356245
...
@@ -59,7 +59,7 @@ def find_cuda_libraries_in_path_list(paths_list_candidate: str) -> Iterable[Path
...
@@ -59,7 +59,7 @@ def find_cuda_libraries_in_path_list(paths_list_candidate: str) -> Iterable[Path
for
pth
in
dir
.
glob
(
lib_pattern
):
for
pth
in
dir
.
glob
(
lib_pattern
):
if
pth
.
is_file
():
if
pth
.
is_file
():
yield
pth
yield
pth
except
PermissionError
:
except
(
OSError
,
PermissionError
)
:
pass
pass
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment