Skip to content

Commit

Permalink
fix(frontend-python): test_matmul, formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
rudy-6-4 authored and BourgerieQuentin committed Aug 2, 2024
1 parent 8955385 commit ee19ffe
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions frontends/concrete-python/tests/execution/test_matmul.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,15 +286,14 @@ def rhs_function(x):
),
]


@pytest.mark.parametrize(
"lhs_shape,rhs_shape,bounds,clear_rhs",
[
(
lhs_shape, rhs_shape, bounds, clear
)
for lhs_shape,rhs_shape,bounds in test_matmul_shape_and_bounds
(lhs_shape, rhs_shape, bounds, clear)
for lhs_shape, rhs_shape, bounds in test_matmul_shape_and_bounds
for clear in [False, True]
]
],
)
def test_matmul(lhs_shape, rhs_shape, bounds, clear_rhs, helpers):
"""
Expand Down

0 comments on commit ee19ffe

Please sign in to comment.