Skip to content

Commit

Permalink
#0: disable some state depdendent tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aliuTT committed May 29, 2024
1 parent 22627b2 commit cb7a4ee
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/ttnn/unit_tests/operations/test_max_pool2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit cb7a4ee

Please sign in to comment.