From fdb00e88b7010ecb9f578e1a01d129ac7e1592d2 Mon Sep 17 00:00:00 2001 From: Michael Chiou Date: Wed, 20 Nov 2024 15:15:42 -0800 Subject: [PATCH] #15234: disable more tests --- .../python_api_testing/unit_testing/misc/test_reshard.py | 2 +- .../python_api_testing/unit_testing/misc/test_transpose.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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 cfb4d3afdd7..f976ecb1d11 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,7 +172,6 @@ def run_reshard_test( ), ], ) -@skip_for_blackhole("GH Issue #15234") @pytest.mark.parametrize("tt_dtype", [ttnn.bfloat16, ttnn.bfloat8_b]) def test_reshard( device, @@ -347,6 +346,7 @@ def test_reshard_with_program_cache( assert device.num_program_cache_entries() == 3 +@skip_for_blackhole("GH Issue #15234") @pytest.mark.parametrize( "input_shape, input_layout, input_shard_grid, input_shard_shape, input_shard_orientation, input_sharding_scheme, input_buffer_type, output_shard_grid, output_shard_shape, output_shard_orientation, output_sharding_scheme, output_buffer_type", [ 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 bec09ac3a2d..c76ff8a53f5 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 @@ -187,6 +187,7 @@ def test_transpose_wh_program_cache(dtype, device, use_program_cache): transpose(input_shape, device, dim0=-2, dim1=-1, expected_program_cache_size=3, input_dtype=dtype) +@skip_for_blackhole("GH #15234") @pytest.mark.parametrize( "dtype", (ttnn.bfloat8_b, ttnn.float32),