Skip to content

Commit

Permalink
Mention tenstorrent/tt-metal#16254 in the test cases to ease debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jdh8 committed Dec 21, 2024
1 parent e993a55 commit 355bf82
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/lowering/eltwise/ternary/test_where.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,27 +25,27 @@ def forward(self, cond, then, other):
),
pytest.param(
((1, 1, 7, 7), (1, 12, 7, 7), ()),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors"),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors (tt-metal#16254)"),
),
pytest.param(
((1, 1, 45, 45), (1, 12, 45, 45), ()),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors"),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors (tt-metal#16254)"),
),
pytest.param(
((1, 1, 1, 46), (1, 12, 1, 46), ()),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors"),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors (tt-metal#16254)"),
),
pytest.param(
((1, 1, 5, 5), (1, 16, 5, 5), ()),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors"),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors (tt-metal#16254)"),
),
pytest.param(
((1, 1, 1, 6), (1, 16, 1, 6), ()),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors"),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors (tt-metal#16254)"),
),
pytest.param(
((1, 1, 256), (1, 1, 256), ()),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors"),
marks=pytest.mark.xfail(reason="ttnn.where cannot handle 0-D tensors (tt-metal#16254)"),
),
((1, 1, 7, 7), (1, 12, 7, 7), (1,)),
((1, 1, 45, 45), (1, 12, 45, 45), (1,)),
Expand Down

0 comments on commit 355bf82

Please sign in to comment.