diff options
author | justheuristic <justheuristic@gmail.com> | 2022-09-18 01:09:24 +0300 |
---|---|---|
committer | justheuristic <justheuristic@gmail.com> | 2022-09-18 01:09:24 +0300 |
commit | 5d658171017473b54825dfeac21718f4e4be4eca (patch) | |
tree | 713911c2465b202500df596c5632de2b68865a7d /bitsandbytes/autograd | |
parent | 4da2227fcbc3803d680dff113403aecac1827bc3 (diff) |
debug
Diffstat (limited to 'bitsandbytes/autograd')
-rw-r--r-- | bitsandbytes/autograd/_functions.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bitsandbytes/autograd/_functions.py b/bitsandbytes/autograd/_functions.py index 407f14b..9928fbd 100644 --- a/bitsandbytes/autograd/_functions.py +++ b/bitsandbytes/autograd/_functions.py @@ -370,8 +370,6 @@ class MatMul8bitLt(torch.autograd.Function): if state.threshold > 0.0 and subA is not None: grad_B[:, idx] += torch.matmul(grad_output.t(), subA) - raise NotImplementedError("!!") - if req_gradA: if state.CBt is not None: C32grad, Sgrad = F.transform(Cgrad, "col32") |