From f9a9b2e988372a151cae5a984aceed78671ba4fb Mon Sep 17 00:00:00 2001 From: Chen-Pang He Date: Thu, 22 Aug 2024 22:06:21 +0000 Subject: [PATCH] Mark xfail for xlogy involving broadcasting xlogy asserts the same size for inputs for now --- tests/lowering/eltwise/binary/test_xlogy.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/lowering/eltwise/binary/test_xlogy.py b/tests/lowering/eltwise/binary/test_xlogy.py index de1e0b4bb..afd10442c 100644 --- a/tests/lowering/eltwise/binary/test_xlogy.py +++ b/tests/lowering/eltwise/binary/test_xlogy.py @@ -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)"),