Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Merge requests
!478
Add cyclic scheduling and improve resource
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add cyclic scheduling and improve resource
improve-resource-constraint
into
master
Overview
0
Commits
3
Pipelines
2
Changes
5
Merged
Simon Bjurek
requested to merge
improve-resource-constraint
into
master
1 month ago
Overview
0
Commits
3
Pipelines
2
Changes
2
Expand
Added cyclical scheduling given a scheduling_time.
Updated examples to showcase this.
Added a check to warn the user if the given resources are lower than the theoretical bound.
Added various checks in the code to warn the user.
Changed ListScheduler in various places for readability and bug-fixes.
Fixed bug from
#305 (closed)
Closes:
#305 (closed)
#292 (closed)
0
0
Merge request reports
Compare
version 1
version 1
4d351708
1 month ago
master (base)
and
latest version
latest version
198b8e22
3 commits,
1 month ago
version 1
4d351708
3 commits,
1 month ago
Show latest version
2 files
+
1
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
b_asic/scheduler.py
+
0
−
6
Options
@@ -143,12 +143,6 @@ class ALAPScheduler(Scheduler):
Schedule to apply the scheduling algorithm on.
"""
ASAPScheduler
().
apply_scheduling
(
schedule
)
# max_end_time = schedule.get_max_end_time()
# if schedule.schedule_time is None:
# schedule.set_schedule_time(max_end_time)
# elif schedule.schedule_time < max_end_time:
# raise ValueError(f"Too short schedule time. Minimum is {max_end_time}.")
# move all outputs ALAP before operations
for
output
in
schedule
.
sfg
.
find_by_type_name
(
Output
.
type_name
()):
Loading