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
Compare
master
version 1
0ffa8c8e
2 years ago
master (base)
and
latest version
latest version
386db489
2 commits,
2 years ago
version 1
0ffa8c8e
1 commit,
2 years ago
2 files
+
15
−
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)
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