From d41f41fbb33c860bc9bf92e25302ebef11f95762 Mon Sep 17 00:00:00 2001 From: Michael Chiou Date: Tue, 19 Nov 2024 15:51:13 -0800 Subject: [PATCH] #15234: disable sharded tests on Blackhole until fix is introduced --- .../python_api_testing/unit_testing/misc/test_reshard.py | 1 + .../python_api_testing/unit_testing/misc/test_sharded.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/tt_eager/python_api_testing/unit_testing/misc/test_reshard.py b/tests/tt_eager/python_api_testing/unit_testing/misc/test_reshard.py index 53a00e13f1b..cfb4d3afdd7 100644 --- a/tests/tt_eager/python_api_testing/unit_testing/misc/test_reshard.py +++ b/tests/tt_eager/python_api_testing/unit_testing/misc/test_reshard.py @@ -172,6 +172,7 @@ def run_reshard_test( ), ], ) +@skip_for_blackhole("GH Issue #15234") @pytest.mark.parametrize("tt_dtype", [ttnn.bfloat16, ttnn.bfloat8_b]) def test_reshard( device, diff --git a/tests/tt_eager/python_api_testing/unit_testing/misc/test_sharded.py b/tests/tt_eager/python_api_testing/unit_testing/misc/test_sharded.py index 5df2d752340..61e674d98c4 100644 --- a/tests/tt_eager/python_api_testing/unit_testing/misc/test_sharded.py +++ b/tests/tt_eager/python_api_testing/unit_testing/misc/test_sharded.py @@ -1839,6 +1839,7 @@ def test_sharded_tilize_with_val_padding(input_shape, sharding_config, output_dt assert passing +@skip_for_blackhole("GH #15234") @pytest.mark.parametrize("N", [8, 16]) @pytest.mark.parametrize("in_sharded", [True], ids=["in0_sharded"]) @pytest.mark.parametrize("out_sharded", [True], ids=["out_sharded"])