Skip to content
Snippets Groups Projects
Commit 8d31ed8c authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

More typos...

parent 4fb454f7
No related branches found
No related tags found
2 merge requests!71Better schedule, including plotting,!69Some basic functionality for plotting a schedule
Pipeline #16676 failed
...@@ -183,7 +183,7 @@ class TestExecutionTime: ...@@ -183,7 +183,7 @@ class TestExecutionTime:
def test_set_execution_time(self): def test_set_execution_time(self):
bfly = Butterfly() bfly = Butterfly()
bfly.exection_time = 3 bfly.execution_time = 3
assert bfly.execution_time == 3 assert bfly.execution_time == 3
...@@ -215,7 +215,7 @@ class TestPlotCoordinates(): ...@@ -215,7 +215,7 @@ class TestPlotCoordinates():
assert lat == [[0, 0], [0, 1], [3, 1], [3, 0], [0, 0]] assert lat == [[0, 0], [0, 1], [3, 1], [3, 0], [0, 0]]
assert exe == [[0, 0], [0, 1], [1, 1], [1, 0], [0, 0]] assert exe == [[0, 0], [0, 1], [1, 1], [1, 0], [0, 0]]
def test_complicated_case(): def test_complicated_case(self):
bfly = Butterfly(latency_offsets={'in0': 2, 'in1': 3, 'out0': 5, 'out1': 10}) bfly = Butterfly(latency_offsets={'in0': 2, 'in1': 3, 'out0': 5, 'out1': 10})
bfly.execution_time = 7 bfly.execution_time = 7
...@@ -234,7 +234,7 @@ class TestIOCoordinates(): ...@@ -234,7 +234,7 @@ class TestIOCoordinates():
assert i_c == [[0, 0.5]] assert i_c == [[0, 0.5]]
assert o_c == [[3, 0.5]] assert o_c == [[3, 0.5]]
def test_complicated_case(): def test_complicated_case(self):
bfly = Butterfly(latency_offsets={'in0': 2, 'in1': 3, 'out0': 5, 'out1': 10}) bfly = Butterfly(latency_offsets={'in0': 2, 'in1': 3, 'out0': 5, 'out1': 10})
bfly.execution_time = 7 bfly.execution_time = 7
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment