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
7740c6e9
"docs/git@developer.sourcefind.cn:OpenDAS/vision.git" did not exist on "e8e04f06be4a75079333ad888b0e6b4e7d5cc33d"
Commit
7740c6e9
authored
Sep 19, 2022
by
Tim Dettmers
Browse files
Fixed url in setup.py (#38), updated changelog.
parent
439f2b0c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
CHANGELOG.md
CHANGELOG.md
+11
-0
setup.py
setup.py
+2
-2
No files found.
CHANGELOG.md
View file @
7740c6e9
...
@@ -106,3 +106,14 @@ Bug fixes:
...
@@ -106,3 +106,14 @@ Bug fixes:
-
fixed an import of bnb.utils 2e630b55f51d454f3bd723dffda68a07ef93190c
-
fixed an import of bnb.utils 2e630b55f51d454f3bd723dffda68a07ef93190c
We thank @mryab, @mbrukman, @chessgecko, @dbaranchuk for pull request with bug fixes and new features.
We thank @mryab, @mbrukman, @chessgecko, @dbaranchuk for pull request with bug fixes and new features.
### 0.34.0
#### Bug fixes and memory efficient backprop
Features:
-
Linear8bitLt layer now supports
`memory_efficient_backward=True`
which enables backprop of gradients through frozen weights.
Bug fixes:
-
fixed an issue where too many threads were created in blockwise quantization on the CPU for large tensors
setup.py
View file @
7740c6e9
...
@@ -18,13 +18,13 @@ def read(fname):
...
@@ -18,13 +18,13 @@ def read(fname):
setup
(
setup
(
name
=
f
"bitsandbytes"
,
name
=
f
"bitsandbytes"
,
version
=
f
"0.3
3.1
"
,
version
=
f
"0.3
4.0
"
,
author
=
"Tim Dettmers"
,
author
=
"Tim Dettmers"
,
author_email
=
"dettmers@cs.washington.edu"
,
author_email
=
"dettmers@cs.washington.edu"
,
description
=
"8-bit optimizers and matrix multiplication routines."
,
description
=
"8-bit optimizers and matrix multiplication routines."
,
license
=
"MIT"
,
license
=
"MIT"
,
keywords
=
"gpu optimizers optimization 8-bit quantization compression"
,
keywords
=
"gpu optimizers optimization 8-bit quantization compression"
,
url
=
"http://
packages.python.org
/bitsandbytes"
,
url
=
"http
s
://
github.com/TimDettmers
/bitsandbytes"
,
packages
=
find_packages
(),
packages
=
find_packages
(),
entry_points
=
{
entry_points
=
{
"console_scripts"
:
[
"debug_cuda = bitsandbytes.debug_cli:cli"
],
"console_scripts"
:
[
"debug_cuda = bitsandbytes.debug_cli:cli"
],
...
...
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