Skip to content

Commit 0f40fa3

Browse files
committed
Bumped version.
1 parent 1b8772a commit 0f40fa3

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,3 +228,14 @@ Deprecated:
228228
Features:
229229
- Added Int8 SwitchBack layers
230230
- Added Fake FP8 layers for research purposes (available under `bnb.research.nn. ...`)
231+
232+
233+
### 0.39.0
234+
235+
236+
Features:
237+
- 4-bit matrix multiplication for Float4 and NormalFloat4 data types.
238+
- Added 4-bit quantization routines
239+
- Doubled quantization routines for 4-bit quantization
240+
- Paged optimizers for Adam and Lion.
241+
- bfloat16 gradient / weight support for Adam and Lion with 8 or 32-bit states.

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ FILES_CUDA := $(CSRC)/ops.cu $(CSRC)/kernels.cu
2525
FILES_CPP := $(CSRC)/common.cpp $(CSRC)/cpu_ops.cpp $(CSRC)/pythonInterface.c
2626

2727
INCLUDE := -I $(CUDA_HOME)/include -I $(ROOT_DIR)/csrc -I $(CONDA_PREFIX)/include -I $(ROOT_DIR)/include
28-
INCLUDE_10x := -I $(CUDA_HOME)/include -I $(ROOT_DIR)/csrc -I $(ROOT_DIR)/dependencies/cub -I $(ROOT_DIR)/include
29-
LIB := -L $(CUDA_HOME)/lib64 -lcudart -lcublas -lcublasLt -lcurand -lcusparse -L $(CONDA_PREFIX)/lib
28+
LIB := -L $(CUDA_HOME)/lib64 -lcudart -lcublas -lcublasLt -lcusparse -L $(CONDA_PREFIX)/lib
3029

3130
# NVIDIA NVCC compilation flags
3231
COMPUTE_CAPABILITY += -gencode arch=compute_50,code=sm_50 # Maxwell

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ def read(fname):
1818

1919
setup(
2020
name=f"bitsandbytes",
21-
version=f"0.38.1",
21+
version=f"0.39.0",
2222
author="Tim Dettmers",
2323
author_email="[email protected]",
24-
description="8-bit optimizers and matrix multiplication routines.",
24+
description="k-bit optimizers and matrix multiplication routines.",
2525
license="MIT",
2626
keywords="gpu optimizers optimization 8-bit quantization compression",
2727
url="https://github.com/TimDettmers/bitsandbytes",

0 commit comments

Comments
 (0)