diff --git a/test/test_linalg.py b/test/test_linalg.py index 37da7fe8a2f..a38a28ba04a 100644 --- a/test/test_linalg.py +++ b/test/test_linalg.py @@ -5903,8 +5903,8 @@ class TestLinalg(TestCase): self.assertGreater(initial_count, 0) # we seeded 1 result line # Perform ONE simple matmul - A = torch.randn(37, 53, device=device, dtype=dtype) - B = torch.randn(53, 29, device=device, dtype=dtype) + A = torch.randn(27, 43, device=device, dtype=dtype) + B = torch.randn(43, 39, device=device, dtype=dtype) _ = torch.matmul(A, B) # Verify that new results were appended to the same file