forked from mrq/bitsandbytes-rocm
Fixed url in setup.py (#38), updated changelog.
This commit is contained in:
parent
439f2b0c10
commit
7740c6e9c9
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -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
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -18,13 +18,13 @@ def read(fname):
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=f"bitsandbytes",
|
name=f"bitsandbytes",
|
||||||
version=f"0.33.1",
|
version=f"0.34.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="https://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"],
|
||||||
|
|
Loading…
Reference in New Issue
Block a user