From 879bc31f8efbcb4ef829edd0f34ae7b2632b6494 Mon Sep 17 00:00:00 2001 From: Manolis Papadakis Date: Thu, 30 May 2024 23:47:01 -0700 Subject: [PATCH] Reduce dimensionality of inputs, to work under default max-dim=4 --- tests/integration/test_matmul.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/integration/test_matmul.py b/tests/integration/test_matmul.py index c8b2dcd3d..a4c4e3fd0 100644 --- a/tests/integration/test_matmul.py +++ b/tests/integration/test_matmul.py @@ -47,7 +47,6 @@ def operation(lib, *args, **kwargs): @pytest.mark.parametrize( "a_shape", ( - (2, 3, 4, 5), (3, 4, 5), (4, 5), (5,), @@ -56,7 +55,6 @@ def operation(lib, *args, **kwargs): @pytest.mark.parametrize( "b_shape", ( - (2, 3, 5, 6), (3, 5, 6), (5, 6), (5,), @@ -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,), @@ -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), ),