Skip to content

Commit 2729f43

Browse files
authored
Increase atol for test_matmul_split_k (#155)
1 parent 8a95454 commit 2729f43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_matmul.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ def matmul_split_k(x: torch.Tensor, y: torch.Tensor) -> torch.Tensor:
672672
indexing="block_ptr",
673673
)
674674
expected = x @ y
675-
torch.testing.assert_close(result, expected, rtol=0.01, atol=0.01)
675+
torch.testing.assert_close(result, expected, atol=1e-1, rtol=1e-2)
676676
self.assertExpectedInline(
677677
code,
678678
"""\

0 commit comments

Comments
 (0)