Skip to content
Snippets Groups Projects

Misc fixes, added method for getting min resources, now checks iteration bound

Merged Simon Bjurek requested to merge misc-impr into master
1 unresolved thread
  • Did some misc fixes like removed unneccecary check in handle_output...
  • Added method for getting min resources.
  • Now checks iteration period bound before trying to schedule.
  • Added column for memory reads in list scheduler.

Closes: #313 (closed) #301 (closed) #309 (closed)

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • 479 483 for op_id, start_time in alap_start_times.items()
    480 484 }
    481 485
    486 def _calculate_memory_reads(
    487 self, ready_ops: list["GraphID"]
    488 ) -> dict["GraphID", int]:
    489 op_reads = {}
    490 for op_id in ready_ops:
    491 reads = 0
    492 for op_input in self._sfg.find_by_id(op_id).inputs:
    493 source_op = op_input.signals[0].source.operation
    494 if isinstance(source_op, DontCare):
    495 continue
    496 if isinstance(source_op, Delay):
  • Simon Bjurek added 1 commit

    added 1 commit

    Compare with previous version

  • Simon Bjurek marked this merge request as draft

    marked this merge request as draft

  • Simon Bjurek added 1 commit

    added 1 commit

    Compare with previous version

  • Simon Bjurek marked this merge request as ready

    marked this merge request as ready

  • Oscar Gustafsson approved this merge request

    approved this merge request

  • Please register or sign in to reply
    Loading