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
!177
Add critical path computation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add critical path computation
critical_path
into
master
Overview
0
Commits
2
Pipelines
2
Changes
2
Merged
Frans Skarman
requested to merge
critical_path
into
master
2 years ago
Overview
0
Commits
2
Pipelines
2
Changes
2
Expand
Closes
#94 (closed)
I only have one tests, do I need more?
0
0
Merge request reports
Viewing commit
0ffa8c8e
Prev
Next
Show latest version
2 files
+
14
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
0ffa8c8e
Add critical path computation
· 0ffa8c8e
Frans Skarman
authored
2 years ago
b_asic/signal_flow_graph.py
+
6
−
0
Options
@@ -1451,3 +1451,9 @@ class SFG(AbstractOperation):
if
format
is
not
None
:
dg
.
format
=
format
dg
.
view
()
def
critical_path
(
self
):
# Import here needed to avoid circular imports
from
b_asic.schedule
import
Schedule
return
Schedule
(
self
,
scheduling_algorithm
=
"
ASAP
"
).
schedule_time
Loading