Commit 577275bd authored by justheuristic's avatar justheuristic
Browse files

cast properly

parent 45dc1983
...@@ -294,7 +294,7 @@ class MatMul8bitLt(torch.autograd.Function): ...@@ -294,7 +294,7 @@ class MatMul8bitLt(torch.autograd.Function):
(outliers * state.SCB.view(-1, 1) / 127.0) (outliers * state.SCB.view(-1, 1) / 127.0)
.t() .t()
.contiguous() .contiguous()
.to(B.dtype) .to(A.dtype)
) )
CA[:, state.idx.long()] = 0 CA[:, state.idx.long()] = 0
CAt[:, state.idx.long()] = 0 CAt[:, state.idx.long()] = 0
......
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