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
Commits
4f6077fb
Commit
4f6077fb
authored
2 years ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
More schedule fixes
parent
d87e7f7c
Branches
fixschedule2
No related tags found
No related merge requests found
Pipeline
#95640
failed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/schedule.py
+3
-1
3 additions, 1 deletion
b_asic/schedule.py
with
3 additions
and
1 deletion
b_asic/schedule.py
+
3
−
1
View file @
4f6077fb
...
...
@@ -173,7 +173,9 @@ class Schedule:
operation
=
cast
(
Operation
,
self
.
_sfg
.
find_by_id
(
graph_id
))
for
output_port
in
operation
.
outputs
:
output_slacks
=
{}
available_time
=
start_time
+
cast
(
int
,
output_port
.
latency_offset
)
available_time
=
(
start_time
+
cast
(
int
,
output_port
.
latency_offset
)
)
%
self
.
_schedule_time
for
signal
in
output_port
.
signals
:
destination
=
cast
(
InputPort
,
signal
.
destination
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment