From cb7a4ee889ba3b7ed10c463c2d73a137e3fda4d9 Mon Sep 17 00:00:00 2001 From: Allan Liu Date: Wed, 29 May 2024 21:12:50 +0000 Subject: [PATCH] #0: disable some state depdendent tests --- tests/ttnn/unit_tests/operations/test_max_pool2d.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/ttnn/unit_tests/operations/test_max_pool2d.py b/tests/ttnn/unit_tests/operations/test_max_pool2d.py index d3d94ad34cd..90091538c72 100644 --- a/tests/ttnn/unit_tests/operations/test_max_pool2d.py +++ b/tests/ttnn/unit_tests/operations/test_max_pool2d.py @@ -128,6 +128,16 @@ def test_run_max_pool( ): pytest.skip("Issue #6992: Statically allocated circular buffers in program clash with L1 buffers on core range") + if ( + dtype == ttnn.bfloat16 + and nblocks == 1 + and dilation == (1, 1) + and padding == (1, 1) + and kernel_size == (3, 3) + and act_shape == [1, 64, 112, 112] + ): + pytest.skip("Issue #8958, Suspected device state dependent config") + torch.manual_seed(0) torch.set_printoptions(precision=3, sci_mode=False, linewidth=500, threshold=10000, edgeitems=32)