Skip to content

Commit

Permalink
Mark xfail for xlogy involving broadcasting
Browse files Browse the repository at this point in the history
xlogy asserts the same size for inputs for now
  • Loading branch information
jdh8 committed Aug 22, 2024
1 parent 28ac8b0 commit f9a9b2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/lowering/eltwise/binary/test_xlogy.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ def forward(self, x, y):
"input_shapes",
(
((4, 4), (4, 4)),
((8, 1), (8, 8)),
pytest.param(
((8, 1), (8, 8)),
marks=pytest.mark.xfail(reason="broadcasting issues (#64)"),
),
pytest.param(
((1, 8), (8, 1)),
marks=pytest.mark.xfail(reason="broadcasting issues (#64)"),
Expand Down

0 comments on commit f9a9b2e

Please sign in to comment.