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
1ddd9488
Commit
1ddd9488
authored
1 year ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Add move_operation_asap and move_operation_alap
parent
b61b946a
No related branches found
No related tags found
1 merge request
!400
Add move_operation_asap and move_operation_alap
Pipeline
#97715
passed
1 year ago
Stage: test
Stage: deploy
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
b_asic/gui_utils/icons.py
+3
-0
3 additions, 0 deletions
b_asic/gui_utils/icons.py
b_asic/schedule.py
+50
-0
50 additions, 0 deletions
b_asic/schedule.py
b_asic/scheduler_gui/operation_item.py
+20
-2
20 additions, 2 deletions
b_asic/scheduler_gui/operation_item.py
with
73 additions
and
2 deletions
b_asic/gui_utils/icons.py
+
3
−
0
View file @
1ddd9488
...
...
@@ -33,6 +33,9 @@ ICONS = {
'
full-screen-exit
'
:
'
mdi6.fullscreen-exit
'
,
'
warning
'
:
'
fa5s.exclamation-triangle
'
,
'
port-numbers
'
:
'
fa5s.hashtag
'
,
'
swap
'
:
'
fa5s.arrows-alt-v
'
,
'
asap
'
:
'
fa5s.fast-backward
'
,
'
alap
'
:
'
fa5s.fast-forward
'
,
}
...
...
This diff is collapsed.
Click to expand it.
b_asic/schedule.py
+
50
−
0
View file @
1ddd9488
...
...
@@ -644,6 +644,56 @@ class Schedule:
self
.
_start_times
[
graph_id
]
=
new_start
return
self
def
move_operation_alap
(
self
,
graph_id
:
GraphID
)
->
"
Schedule
"
:
"""
Move an operation as late as possible in the schedule.
This is basically the same as::
schedule.move_operation(graph_id, schedule.forward_slack(graph_id))
but Outputs will only move to the end of the schedule.
Parameters
----------
graph_id : GraphID
The graph id of the operation to move.
"""
op
=
self
.
_sfg
.
find_by_id
(
graph_id
)
if
op
is
None
:
raise
ValueError
(
f
"
No operation with graph_id
{
graph_id
!r}
in schedule
"
)
if
isinstance
(
op
,
Output
):
self
.
move_operation
(
graph_id
,
self
.
schedule_time
-
self
.
_start_times
[
graph_id
]
)
else
:
self
.
move_operation
(
graph_id
,
self
.
forward_slack
(
graph_id
))
return
self
def
move_operation_asap
(
self
,
graph_id
:
GraphID
)
->
"
Schedule
"
:
"""
Move an operation as soon as possible in the schedule.
This is basically the same as::
schedule.move_operation(graph_id, -schedule.backward_slack(graph_id))
but Inputs will only move to the start of the schedule.
Parameters
----------
graph_id : GraphID
The graph id of the operation to move.
"""
op
=
self
.
_sfg
.
find_by_id
(
graph_id
)
if
op
is
None
:
raise
ValueError
(
f
"
No operation with graph_id
{
graph_id
!r}
in schedule
"
)
if
isinstance
(
op
,
Input
):
self
.
move_operation
(
graph_id
,
-
self
.
_start_times
[
graph_id
])
else
:
self
.
move_operation
(
graph_id
,
-
self
.
backward_slack
(
graph_id
))
return
self
def
_remove_delays_no_laps
(
self
)
->
None
:
"""
Remove delay elements without updating laps. Used when loading schedule.
"""
delay_list
=
self
.
_sfg
.
find_by_type_name
(
Delay
.
type_name
())
...
...
This diff is collapsed.
Click to expand it.
b_asic/scheduler_gui/operation_item.py
+
20
−
2
View file @
1ddd9488
...
...
@@ -21,8 +21,10 @@ from qtpy.QtWidgets import (
QMenu
,
)
# B-ASIC
from
b_asic.graph_component
import
GraphID
# B-ASIC
from
b_asic.gui_utils.icons
import
get_icon
from
b_asic.operation
import
Operation
from
b_asic.scheduler_gui._preferences
import
(
OPERATION_EXECUTION_TIME_INACTIVE
,
...
...
@@ -305,10 +307,20 @@ class OperationItem(QGraphicsItemGroup):
def
_open_context_menu
(
self
):
menu
=
QMenu
()
swap
=
QAction
(
"
Swap
"
)
swap
=
QAction
(
get_icon
(
'
swap
'
),
"
Swap
"
)
menu
.
addAction
(
swap
)
swap
.
setEnabled
(
self
.
_operation
.
is_swappable
)
swap
.
triggered
.
connect
(
self
.
_swap_io
)
slacks
=
self
.
_parent
.
_schedule
.
slacks
(
self
.
_operation
.
graph_id
)
asap
=
QAction
(
get_icon
(
'
asap
'
),
"
Move as soon as possible
"
)
asap
.
triggered
.
connect
(
self
.
_move_asap
)
asap
.
setEnabled
(
slacks
[
0
]
>
0
)
menu
.
addAction
(
asap
)
alap
=
QAction
(
get_icon
(
'
alap
'
),
"
Move as late as possible
"
)
alap
.
triggered
.
connect
(
self
.
_move_alap
)
alap
.
setEnabled
(
slacks
[
1
]
>
0
)
menu
.
addAction
(
alap
)
menu
.
addSeparator
()
execution_time_plot
=
QAction
(
f
"
Show execution times for
{
self
.
_operation
.
type_name
()
}
"
)
...
...
@@ -321,3 +333,9 @@ class OperationItem(QGraphicsItemGroup):
def
_execution_time_plot
(
self
,
event
=
None
)
->
None
:
self
.
_parent
.
_execution_time_plot
(
self
.
_operation
.
type_name
())
def
_move_asap
(
self
,
event
=
None
):
self
.
_parent
.
_schedule
.
move_operation_asap
(
self
.
_operation
.
graph_id
)
def
_move_alap
(
self
,
event
=
None
):
self
.
_parent
.
_schedule
.
move_operation_alap
(
self
.
_operation
.
graph_id
)
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