Skip to content
Snippets Groups Projects
Commit 2e1d458e authored by Maxence Naud's avatar Maxence Naud
Browse files

change test_scheduler.py tests back as it was

parent 9103ecfe
No related branches found
No related tags found
3 merge requests!118v0.4.0,!108v0.4.0,!92Export refactor
Pipeline #57399 failed
...@@ -16,6 +16,7 @@ class test_scheduler(unittest.TestCase): ...@@ -16,6 +16,7 @@ class test_scheduler(unittest.TestCase):
t = aidge_core.Tensor(np.arange(6, dtype=np.int32) - 3) t = aidge_core.Tensor(np.arange(6, dtype=np.int32) - 3)
input_node = aidge_core.Producer(t)
relu = aidge_core.ReLU() relu = aidge_core.ReLU()
input_node.add_child(relu) input_node.add_child(relu)
...@@ -29,7 +30,7 @@ class test_scheduler(unittest.TestCase): ...@@ -29,7 +30,7 @@ class test_scheduler(unittest.TestCase):
scheduler = aidge_core.SequentialScheduler(gv) scheduler = aidge_core.SequentialScheduler(gv)
scheduler.forward(data=[t]) scheduler.forward()
out_tensor = relu.get_operator().get_output(0) out_tensor = relu.get_operator().get_output(0)
expected_out = [0,0,0,0,1,2] expected_out = [0,0,0,0,1,2]
......
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