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
bbdda836
Commit
bbdda836
authored
9 months ago
by
Robier Al Kaadi
Committed by
Oscar Gustafsson
9 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Add set_latency_of_type
parent
fa6b6fb8
No related branches found
Branches containing commit
No related tags found
1 merge request
!447
Add set_latency_of_type
Pipeline
#132037
passed
9 months ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/schedule.py
+31
-0
31 additions, 0 deletions
b_asic/schedule.py
with
31 additions
and
0 deletions
b_asic/schedule.py
+
31
−
0
View file @
bbdda836
...
...
@@ -526,6 +526,37 @@ class Schedule:
"""
self
.
_sfg
.
set_execution_time_of_type
(
type_name
,
execution_time
)
def
set_latency_of_type
(
self
,
type_name
:
TypeName
,
latency
:
int
)
->
None
:
"""
Set the latency of all operations with the given type name.
Parameters
----------
type_name : TypeName
The type name of the operation. For example, obtained as
``Addition.type_name()``.
latency : int
The latency of the operation.
"""
passed
=
True
for
op
in
self
.
_sfg
.
operations
:
if
type_name
==
op
.
type_name
()
or
type_name
==
op
.
graph_id
:
change_in_latency
=
latency
-
op
.
latency
if
change_in_latency
>
(
self
.
forward_slack
(
op
.
graph_id
)):
passed
=
False
raise
ValueError
(
f
"
Error: Can
'
t increase latency for all components. Try increassing forward slack time by rescheduling.
"
f
"
Error in:
{
op
.
graph_id
}
"
)
break
if
change_in_latency
<
0
or
passed
:
for
op
in
self
.
_sfg
.
operations
:
if
type_name
==
op
.
type_name
()
or
type_name
==
op
.
graph_id
:
cast
(
Operation
,
op
).
set_latency
(
latency
)
def
move_y_location
(
self
,
graph_id
:
GraphID
,
new_y
:
int
,
insert
:
bool
=
False
)
->
None
:
...
...
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