Skip to content

Commit

Permalink
Properly test 1-D cases after working around tenstorrent/tt-metal#12671
Browse files Browse the repository at this point in the history
  • Loading branch information
jdh8 committed Dec 10, 2024
1 parent d81b305 commit 5f9034a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/lowering/eltwise/unary/test_hardsigmoid.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def forward(self, x):
(2, 3, 4, 5),
(7, 7, 7),
(420, 69),
pytest.param((1337,), marks=pytest.mark.xfail(reason="1D cases solved in #198, waiting for review")),
(1337,),
),
)
def test_hardsigmoid(device, input_shape):
Expand Down
2 changes: 1 addition & 1 deletion tests/lowering/eltwise/unary/test_hardswish.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def forward(self, x):
(2, 3, 4, 5),
(7, 7, 7),
(420, 69),
pytest.param((1337,), marks=pytest.mark.xfail(reason="1D cases solved in #198, waiting for review")),
(1337,),
),
)
def test_hardswish(device, input_shape):
Expand Down

0 comments on commit 5f9034a

Please sign in to comment.