diff --git a/examples/fivepointwinograddft.py b/examples/fivepointwinograddft.py index 0787445ebb37df54947e2f0eada6513d98dbdac7..74051d2562b01f2c5ebe7010d0d19393a52ee715 100644 --- a/examples/fivepointwinograddft.py +++ b/examples/fivepointwinograddft.py @@ -2,6 +2,8 @@ ======================= Five-point Winograd DFT ======================= + +First, define the SFG/block diagram """ from math import cos, pi, sin @@ -77,7 +79,8 @@ schedule = Schedule(sfg, cyclic=True) schedule.show() # %% -# Reschedule to only use one AddSub and one multiplier +# Reschedule to only use one AddSub, one Butterfly, and one ConstantMultiplication per +# time unit schedule.set_schedule_time(10) schedule.move_operation('out4', 12) @@ -161,7 +164,7 @@ memories = [] for i, mem in enumerate(mem_vars_set): memory = Memory(mem, memory_type="RAM", entity_name=f"memory{i}") memories.append(memory) - mem.show(title=f"{memory.entity_name}") + mem.show(title=f"{memory.entity_name} variables") memory.assign("left_edge") memory.show_content(title=f"Assigned {memory.entity_name}") diff --git a/examples/threepointwinograddft.py b/examples/threepointwinograddft.py index 38338b0894bbe58f482668f6ca3a7a9d4c34fe14..aad3ddb23f5c4629255ca3c747f769cbb34e1d92 100644 --- a/examples/threepointwinograddft.py +++ b/examples/threepointwinograddft.py @@ -57,33 +57,26 @@ sfg.set_execution_time_of_type(AddSub.type_name(), 1) schedule = Schedule(sfg, cyclic=True) schedule.show() -# Reschedule to only use one AddSub and one multiplier +# Reschedule to only use one AddSub and one ConstantMultiplication per time unit schedule.set_schedule_time(10) -schedule.move_operation('out1', 3) -schedule.move_operation('out2', 4) +schedule.move_operation('out0', 11) +schedule.move_operation('out1', 9) +schedule.move_operation('out2', 10) schedule.move_operation('addsub4', 2) schedule.move_operation('addsub3', 3) schedule.move_operation('addsub2', 2) schedule.move_operation('cmul1', 2) schedule.move_operation('cmul0', 2) -schedule.move_operation('out0', 5) schedule.move_operation('addsub0', 3) schedule.move_operation('addsub5', 2) schedule.move_operation('addsub1', 2) schedule.move_operation('in1', 1) schedule.move_operation('in2', 2) schedule.move_operation('cmul1', 1) -schedule.move_operation('out2', 6) -schedule.move_operation('out1', 6) -schedule.move_operation('out0', 6) schedule.move_operation('addsub5', 1) -schedule.move_operation('addsub3', 3) -schedule.move_operation('addsub4', 4) -schedule.move_operation('addsub3', 1) -schedule.move_operation('addsub4', 4) -schedule.move_operation('cmul1', 3) -schedule.move_operation('addsub3', 2) -schedule.move_operation('cmul1', 3) +schedule.move_operation('addsub3', 6) +schedule.move_operation('addsub4', 8) +schedule.move_operation('cmul1', 6) schedule.move_operation('addsub2', 5) schedule.set_schedule_time(6) schedule.move_operation('addsub0', 1) @@ -126,7 +119,7 @@ memories = [] for i, mem in enumerate(mem_vars_set): memory = Memory(mem, memory_type="RAM", entity_name=f"memory{i}") memories.append(memory) - mem.show(title=f"{memory.entity_name}") + mem.show(title=f"{memory.entity_name} variables") memory.assign("left_edge") memory.show_content(title=f"Assigned {memory.entity_name}")