Skip to content
Snippets Groups Projects
Commit 88ecdf0b authored by Houssem ROUIS's avatar Houssem ROUIS Committed by Maxence Naud
Browse files

fix test_recipes.py

parent c2e7afcd
No related branches found
No related tags found
No related merge requests found
...@@ -45,9 +45,9 @@ class test_recipies(unittest.TestCase): ...@@ -45,9 +45,9 @@ class test_recipies(unittest.TestCase):
self.assertTrue(all([i in old_nodes for i in graph_view.get_nodes()])) self.assertTrue(all([i in old_nodes for i in graph_view.get_nodes()]))
def test_fuse_matmul_add(self): def test_fuse_matmul_add(self):
matmul0 = aidge_core.MatMul(1, 1, name="MatMul0") matmul0 = aidge_core.MatMul(name="MatMul0")
add0 = aidge_core.Add(2, name="Add0") add0 = aidge_core.Add(2, name="Add0")
matmul1 = aidge_core.MatMul(1, 1, name="MatMul1") matmul1 = aidge_core.MatMul(name="MatMul1")
add1 = aidge_core.Add(2, name="Add1") add1 = aidge_core.Add(2, name="Add1")
graph_view = aidge_core.sequential([matmul0, add0, matmul1, add1]) graph_view = aidge_core.sequential([matmul0, add0, matmul1, add1])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment