diff options
author | Tim Dettmers <tim.dettmers@gmail.com> | 2022-09-11 11:58:40 -0700 |
---|---|---|
committer | Tim Dettmers <tim.dettmers@gmail.com> | 2022-09-11 11:58:40 -0700 |
commit | 8ccc0b0ee10985b44c028e1b3e9128a866b6f295 (patch) | |
tree | 45dd54d8421759564d62f931638b97c65297afd5 | |
parent | 19a7adca7a6c9bf7061a384d7e9d9b13676a1a88 (diff) | |
parent | 2e630b55f51d454f3bd723dffda68a07ef93190c (diff) |
Merge branch 'main' of github.com:TimDettmers/bitsandbytes into main
-rw-r--r-- | bitsandbytes/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bitsandbytes/__init__.py b/bitsandbytes/__init__.py index 7901f96..6d1177f 100644 --- a/bitsandbytes/__init__.py +++ b/bitsandbytes/__init__.py @@ -12,7 +12,7 @@ from .autograd._functions import ( ) from .cextension import COMPILED_WITH_CUDA from .nn import modules -from . import cuda_setup +from . import cuda_setup, utils if COMPILED_WITH_CUDA: from .optim import adam @@ -18,7 +18,7 @@ def read(fname): setup( name=f"bitsandbytes", - version=f"0.32.2", + version=f"0.32.3", author="Tim Dettmers", author_email="dettmers@cs.washington.edu", description="8-bit optimizers and matrix multiplication routines.", |