We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b4a9ef commit 4da2227Copy full SHA for 4da2227
bitsandbytes/autograd/_functions.py
@@ -370,6 +370,8 @@ def backward(ctx, grad_output):
370
if state.threshold > 0.0 and subA is not None:
371
grad_B[:, idx] += torch.matmul(grad_output.t(), subA)
372
373
+ raise NotImplementedError("!!")
374
+
375
if req_gradA:
376
if state.CBt is not None:
377
C32grad, Sgrad = F.transform(Cgrad, "col32")
0 commit comments