summaryrefslogtreecommitdiff
path: root/bitsandbytes
diff options
context:
space:
mode:
authorjustheuristic <justheuristic@gmail.com>2022-09-18 00:43:56 +0300
committerjustheuristic <justheuristic@gmail.com>2022-09-18 00:43:56 +0300
commit76ece2c126b5255fe973615adf986c4331f521ff (patch)
treebf088ae679cce8dc230fd30b1e092d9a129ee5fd /bitsandbytes
parent18f142e268603849d1756df87d35e2f94b5e4853 (diff)
rollback
Diffstat (limited to 'bitsandbytes')
-rw-r--r--bitsandbytes/autograd/_functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitsandbytes/autograd/_functions.py b/bitsandbytes/autograd/_functions.py
index 55bedee..1d0002c 100644
--- a/bitsandbytes/autograd/_functions.py
+++ b/bitsandbytes/autograd/_functions.py
@@ -318,7 +318,7 @@ class MatMul8bitLt(torch.autograd.Function):
# 4. Mixed-precision decomposition matmul
if coo_tensorA is not None and subA is not None:
- output.addmm_(output, subA, state.subB)
+ output += torch.matmul(subA, state.subB)
# 5. Save state
ctx.state = state