Skip to content

Commit

Permalink
Reduce dimensionality of inputs, to work under default max-dim=4
Browse files Browse the repository at this point in the history
  • Loading branch information
manopapad committed May 31, 2024
1 parent e7105f8 commit 879bc31
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/integration/test_matmul.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ def operation(lib, *args, **kwargs):
@pytest.mark.parametrize(
"a_shape",
(
(2, 3, 4, 5),
(3, 4, 5),
(4, 5),
(5,),
Expand All @@ -56,7 +55,6 @@ def operation(lib, *args, **kwargs):
@pytest.mark.parametrize(
"b_shape",
(
(2, 3, 5, 6),
(3, 5, 6),
(5, 6),
(5,),
Expand All @@ -73,7 +71,6 @@ def test_operator(a_shape, b_shape):
@pytest.mark.parametrize(
"a_shape",
(
(2, 3, 4, 5),
(3, 4, 5),
(4, 5),
(5,),
Expand All @@ -82,7 +79,6 @@ def test_operator(a_shape, b_shape):
@pytest.mark.parametrize(
"b_shape",
(
(2, 3, 5, 5),
(3, 5, 5),
(5, 5),
),
Expand Down

0 comments on commit 879bc31

Please sign in to comment.