From fe1b11fa97f26022540cdf793cff30aa66acbffe Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Thu, 19 Oct 2023 13:05:43 +0000 Subject: [PATCH] [Upd] python Add operators in test --- aidge_core/unit_tests/test_recipies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aidge_core/unit_tests/test_recipies.py b/aidge_core/unit_tests/test_recipies.py index 754907443..883cbffc0 100644 --- a/aidge_core/unit_tests/test_recipies.py +++ b/aidge_core/unit_tests/test_recipies.py @@ -34,9 +34,9 @@ class test_recipies(unittest.TestCase): def test_fuse_matmul_add(self): matmul0 = aidge_core.GenericOperator("MatMul", 1, 2, 1, name="MatMul0") - add0 = aidge_core.Add(name="Add0") + add0 = aidge_core.Add(2, name="Add0") matmul1 = aidge_core.GenericOperator("MatMul", 1, 2, 1, name="MatMul1") - add1 = aidge_core.Add(name="Add1") + add1 = aidge_core.Add(2, name="Add1") graph_view = aidge_core.sequential([matmul0, add0, matmul1, add1]) -- GitLab