summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test_modules.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_modules.py b/tests/test_modules.py
index bb65edb..8e009b4 100644
--- a/tests/test_modules.py
+++ b/tests/test_modules.py
@@ -567,7 +567,7 @@ def test_linear8bitlt_no_fp16_weights(threshold, memory_efficient_backward):
mlp.zero_grad()
(o1 * grad_proj).sum().backward()
- grad_ref = grad_proj.flatten(2) @ w2.to() @ w1.to(grad_proj.device)
+ grad_ref = grad_proj.flatten(2) @ w2 @ w1
assert torch.allclose(b1.grad, grad_ref)