From 3013344cd1ed6cc8a06fa0ad263efe3c7b05cfbd Mon Sep 17 00:00:00 2001 From: Predrag Ilkic Date: Wed, 13 Nov 2024 17:12:04 +0100 Subject: [PATCH] [test] removing xfail in test_ops.py I've noticed some tests are now passing (with latest tt-mlir/tt-metal), so removing `xfail` mark for those. --- forge/test/mlir/test_ops.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/forge/test/mlir/test_ops.py b/forge/test/mlir/test_ops.py index d91a3ea6..dd08fb7d 100644 --- a/forge/test/mlir/test_ops.py +++ b/forge/test/mlir/test_ops.py @@ -129,7 +129,6 @@ def get_input_tensor(dtype): (1, 7, 256), ], ) -@pytest.mark.xfail(reason="Found Unsupported operations while lowering from TTForge to TTIR in forward graph") @pytest.mark.push def test_sin(shape): class sin(nn.Module): @@ -158,7 +157,6 @@ def forward(self, x): (1, 7, 256), ], ) -@pytest.mark.xfail(reason="Found Unsupported operations while lowering from TTForge to TTIR in forward graph") @pytest.mark.push def test_cosine(shape): class cosine(nn.Module): @@ -1070,9 +1068,6 @@ def forward(self, x, y): assert compare_with_golden_pcc(golden=fw_out, calculated=co_out[0], pcc=0.99) -@pytest.mark.xfail( - reason="Unable to reshape a tensor in TILE_LAYOUT to non-tile height and width! Please convert the tensor to ROW_MAJOR_LAYOUT first" -) @pytest.mark.parametrize("x_shape", [7, 32, 41]) @pytest.mark.parametrize("y_shape", [7, 32, 41]) @pytest.mark.parametrize("dim", [1, 2])