Skip to content
Snippets Groups Projects

Added symmetric fir generator

Merged Simon Bjurek requested to merge add-symmetric-fir-generator into master
3 unresolved threads
3 files
+ 180
3
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 2
0
@@ -1020,6 +1020,8 @@ class RecursiveListScheduler(ListScheduler):
destination_port = output_port.signals[0].destination
destination_op = destination_port.operation
if destination_op.graph_id not in self._remaining_ops:
if isinstance(destination_op, Delay):
continue
    • Comment on lines +1023 to +1024

      This is a bug fix where using RecursiveListScheduler on non-recursive algorithms could fail.

Please register or sign in to reply
# spotted a recursive operation -> check if ok
op_available_time = (
self._current_time + op.latency_offsets[f"out{output_port.index}"]
Loading