Commit a214824f authored by justheuristic's avatar justheuristic
Browse files

matmul -1- addmm

parent 14048a3c
...@@ -321,7 +321,7 @@ class MatMul8bitLt(torch.autograd.Function): ...@@ -321,7 +321,7 @@ class MatMul8bitLt(torch.autograd.Function):
# 4. Mixed-precision decomposition matmul # 4. Mixed-precision decomposition matmul
if coo_tensorA is not None and subA is not None: if coo_tensorA is not None and subA is not None:
output.addmm_(subA, state.subB) output += torch.matmul(subA, state.subB)
# 5. Save state # 5. Save state
ctx.state = state ctx.state = state
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment