From 9379df85d223dff18f0fa4adbaf60770700b262a Mon Sep 17 00:00:00 2001 From: justheuristic Date: Sat, 17 Sep 2022 23:13:23 +0300 Subject: check dtypes first --- tests/test_autograd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_autograd.py') 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() -- cgit v1.2.3