summaryrefslogtreecommitdiff
path: root/tests/test_modules.py
diff options
context:
space:
mode:
authorjustheuristic <justheuristic@gmail.com>2022-09-18 01:24:57 +0300
committerjustheuristic <justheuristic@gmail.com>2022-09-18 01:24:57 +0300
commite4086a2758c171993f47b46cf0980030afe6db4a (patch)
treecb019412bab17f0b907aa4a3fe73c9e673444843 /tests/test_modules.py
parent725cc729931e21fd57377caba702da1ebecaa2ff (diff)
cast device
Diffstat (limited to 'tests/test_modules.py')
-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 8e009b4..049858c 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 @ w1
+ grad_ref = grad_proj.flatten(2) @ w2.half() @ w1.half()
assert torch.allclose(b1.grad, grad_ref)