File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -228,3 +228,14 @@ Deprecated:
228228Features:
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.
Original file line number Diff line number Diff line change @@ -25,8 +25,7 @@ FILES_CUDA := $(CSRC)/ops.cu $(CSRC)/kernels.cu
2525FILES_CPP := $(CSRC ) /common.cpp $(CSRC ) /cpu_ops.cpp $(CSRC ) /pythonInterface.c
2626
2727INCLUDE := -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
3231COMPUTE_CAPABILITY += -gencode arch=compute_50,code=sm_50 # Maxwell
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ def read(fname):
1818
1919setup (
2020 name = f"bitsandbytes" ,
21- version = f"0.38.1 " ,
21+ version = f"0.39.0 " ,
2222 author = "Tim Dettmers" ,
232324- 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" ,
You can’t perform that action at this time.
0 commit comments