summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_autograd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_autograd.py b/tests/test_autograd.py
index 083d465..c47754b 100644
--- a/tests/test_autograd.py
+++ b/tests/test_autograd.py
@@ -367,7 +367,7 @@ def test_matmullt(
if has_bias:
out_torch += bias
- assert out_bnb.dtype == torch.dtype
+ assert out_bnb.dtype == out_torch.dtype
n = out_bnb.numel()
err = torch.abs(out_bnb - out_torch).mean().item()