Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9ff6c63

Browse files
committedApr 3, 2024·
pre-commit run --all-files
1 parent 84f67d2 commit 9ff6c63

File tree

6 files changed

+187
-122
lines changed

6 files changed

+187
-122
lines changed
 

‎bitsandbytes/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# LICENSE file in the root directory of this source tree.
55

66
from . import research, utils
7-
from .cextension import lib
87
from .autograd._functions import (
98
MatmulLtState,
109
bmm_cublas,
@@ -13,12 +12,14 @@
1312
matmul_cublas,
1413
mm_cublas,
1514
)
15+
from .cextension import lib
1616
from .nn import modules
1717

1818
if lib and lib.compiled_with_cuda:
1919
from .backends import register_backend
2020
from .backends.cuda import CUDABackend
2121
from .optim import adam
22+
2223
register_backend("cuda", CUDABackend())
2324
__pdoc__ = {
2425
"libbitsandbytes": False,

‎bitsandbytes/backends/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44

55
backends: Dict[str, Backend] = {}
66

7+
78
def register_backend(backend_name: str, backend_instance: Backend):
89
backends[backend_name.lower()] = backend_instance
910

11+
1012
def ensure_backend_is_available(device_type: str):
1113
"""Check if a backend is available for the given device type."""
1214
if device_type.lower() not in backends:

0 commit comments

Comments
 (0)
Please sign in to comment.