From ab4fc4c78e2b4085db96df734fa3374ce067da2e Mon Sep 17 00:00:00 2001 From: qazal Date: Mon, 30 Dec 2024 22:42:52 +0200 Subject: [PATCH] test_mutate_add passes --- test/unit/test_rewrite_map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/test_rewrite_map.py b/test/unit/test_rewrite_map.py index 02369607ba..f482fe2673 100644 --- a/test/unit/test_rewrite_map.py +++ b/test/unit/test_rewrite_map.py @@ -4,7 +4,7 @@ from tinygrad.ops import UOp, symbolic, graph_rewrite_map, _substitute from test.unit.test_tensor_uop_representation import is_pattern, realized_pattern, is_pattern_uop class TestTensorMutates(unittest.TestCase): - @unittest.expectedFailure + #@unittest.expectedFailure def test_mutate_add(self): a = Tensor([1,2,3]) b = Tensor([4,5,6])