From eb90ded1901fc2cf1699bdf1c9698b38b2179508 Mon Sep 17 00:00:00 2001 From: Saad Jameel <163029024+sjameelTT@users.noreply.github.com> Date: Tue, 21 Jan 2025 12:45:56 -0500 Subject: [PATCH] disable test_transpose_2D due to python-side segfault (#16933) ### Ticket #16779 ### Problem description Test keeps segfaulting ### What's changed disable the test ### Checklist - [ ] Post commit CI passes https://github.com/tenstorrent/tt-metal/actions/runs/12889806404 - [ ] Blackhole Post commit (if applicable) - [ ] Model regression CI testing passes (if applicable) - [ ] Device performance regression CI testing passes (if applicable) - [ ] **(For models and ops writers)** Full [new models](https://github.com/tenstorrent/tt-metal/actions/workflows/full-new-models-suite.yaml) tests passes - [ ] New/Existing tests provide coverage for changes --- .../python_api_testing/unit_testing/misc/test_transpose.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/tt_eager/python_api_testing/unit_testing/misc/test_transpose.py b/tests/tt_eager/python_api_testing/unit_testing/misc/test_transpose.py index e5e3a05dbbd..b198fc02060 100644 --- a/tests/tt_eager/python_api_testing/unit_testing/misc/test_transpose.py +++ b/tests/tt_eager/python_api_testing/unit_testing/misc/test_transpose.py @@ -659,11 +659,10 @@ def test_transpose_hc(dtype, shape, device): [ttnn.TILE_LAYOUT, ttnn.ROW_MAJOR_LAYOUT], ) def test_transpose_2D(dtype, shape, layout, device): + pytest.skip("Unstable see #16779") torch.manual_seed(2005) if is_grayskull() and dtype == ttnn.float32: pytest.skip("Skipping float32 tests on Grayskull") - if layout == ttnn.ROW_MAJOR_LAYOUT and shape == [21843, 768] and dtype == ttnn.bfloat16: - pytest.skip("Unstable see #16779") torch_input = torch.randn(shape, dtype=torch.bfloat16) torch_output = torch_input.transpose(0, 1)