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
f3232d13
"git@developer.sourcefind.cn:OpenDAS/bitsandbytes.git" did not exist on "ecf51cb6786a75355a51fb98a643f47d25e48bd0"
Commit
f3232d13
authored
Jul 16, 2023
by
Tim Dettmers
Browse files
Fixed bug where read-permission was assumed for a file. #497
parent
37c25c1e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
CHANGELOG.md
CHANGELOG.md
+7
-0
bitsandbytes/cuda_setup/main.py
bitsandbytes/cuda_setup/main.py
+2
-0
setup.py
setup.py
+1
-1
No files found.
CHANGELOG.md
View file @
f3232d13
...
@@ -275,3 +275,10 @@ Bug fixes:
...
@@ -275,3 +275,10 @@ Bug fixes:
Documentation:
Documentation:
-
Improved documentation for GPUs that do not support 8-bit matmul. #529
-
Improved documentation for GPUs that do not support 8-bit matmul. #529
-
Added description and pointers for the NF4 data type. #543
-
Added description and pointers for the NF4 data type. #543
### 0.40.2
Bug fixes:
-
Fixed a but where a non-existent LD_LIBRARY_PATH variable led to a failure in python -m bitsandbytes #588
-
Removed outdated get_cuda_lib_handle calls that lead to errors. #595 Thank you @ihsanturk
-
Fixed bug where read-permission was assumed for a file. #497
bitsandbytes/cuda_setup/main.py
View file @
f3232d13
...
@@ -199,6 +199,8 @@ def remove_non_existent_dirs(candidate_paths: Set[Path]) -> Set[Path]:
...
@@ -199,6 +199,8 @@ def remove_non_existent_dirs(candidate_paths: Set[Path]) -> Set[Path]:
except
OSError
as
exc
:
except
OSError
as
exc
:
if
exc
.
errno
!=
errno
.
ENAMETOOLONG
:
if
exc
.
errno
!=
errno
.
ENAMETOOLONG
:
raise
exc
raise
exc
except
PermissionError
as
pex
:
pass
non_existent_directories
:
Set
[
Path
]
=
candidate_paths
-
existent_directories
non_existent_directories
:
Set
[
Path
]
=
candidate_paths
-
existent_directories
if
non_existent_directories
:
if
non_existent_directories
:
...
...
setup.py
View file @
f3232d13
...
@@ -18,7 +18,7 @@ def read(fname):
...
@@ -18,7 +18,7 @@ def read(fname):
setup
(
setup
(
name
=
f
"bitsandbytes"
,
name
=
f
"bitsandbytes"
,
version
=
f
"0.40.
1.post1
"
,
version
=
f
"0.40.
2
"
,
author
=
"Tim Dettmers"
,
author
=
"Tim Dettmers"
,
author_email
=
"dettmers@cs.washington.edu"
,
author_email
=
"dettmers@cs.washington.edu"
,
description
=
"k-bit optimizers and matrix multiplication routines."
,
description
=
"k-bit optimizers and matrix multiplication routines."
,
...
...
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