diff options
author | Tim Dettmers <TimDettmers@users.noreply.github.com> | 2022-09-05 16:29:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-05 16:29:36 -0700 |
commit | f0ae860c86039d1c1e41166aaf2153a5bd9b9a89 (patch) | |
tree | 75477acfbce2da2a753ee21d4cf0da64f3f50ea5 /bitsandbytes/autograd/_functions.py | |
parent | eab4d8232d558f2e6bd7f7cc3d00e2e6e94f4e80 (diff) | |
parent | aca55881b9815a462142f42f3ff0dc917830d85c (diff) |
Merge pull request #25 from TimDettmers/remove_unused_code
Remove unused code, switch to warnings
Diffstat (limited to 'bitsandbytes/autograd/_functions.py')
-rw-r--r-- | bitsandbytes/autograd/_functions.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bitsandbytes/autograd/_functions.py b/bitsandbytes/autograd/_functions.py index 4dbf129..be975f6 100644 --- a/bitsandbytes/autograd/_functions.py +++ b/bitsandbytes/autograd/_functions.py @@ -1,6 +1,5 @@ import operator import torch -import bitsandbytes as bnb import bitsandbytes.functional as F from dataclasses import dataclass @@ -378,9 +377,6 @@ class MatMul8bitLt(torch.autograd.Function): return grad_A, grad_B, None, grad_bias, None -matmul = MatMul8bitLt.apply - - def matmul( A: tensor, B: tensor, |