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
dda7f6e8
Commit
dda7f6e8
authored
2 years ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Allow empty execution time and improve error messages
parent
149c06f2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#72124
failed
2 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/operation.py
+5
-3
5 additions, 3 deletions
b_asic/operation.py
with
5 additions
and
3 deletions
b_asic/operation.py
+
5
−
3
View file @
dda7f6e8
...
...
@@ -640,15 +640,15 @@ class AbstractOperation(Operation, AbstractGraphComponent):
port_str
=
port_str
.
lower
()
if
port_str
.
startswith
(
"
in
"
):
index_str
=
port_str
[
2
:]
assert
index_str
.
isdigit
(),
"
Incorrectly formatted index in string, expected
'
in
'
+ index
"
assert
index_str
.
isdigit
(),
f
"
Incorrectly formatted index in string, expected
'
in
'
+ index
, got:
{
port_str
!r}
"
self
.
input
(
int
(
index_str
)).
latency_offset
=
latency_offset
elif
port_str
.
startswith
(
"
out
"
):
index_str
=
port_str
[
3
:]
assert
index_str
.
isdigit
(),
"
Incorrectly formatted index in string, expected
'
out
'
+ index
"
assert
index_str
.
isdigit
(),
f
"
Incorrectly formatted index in string, expected
'
out
'
+ index
, got:
{
port_str
!r}
"
self
.
output
(
int
(
index_str
)).
latency_offset
=
latency_offset
else
:
raise
ValueError
(
"
Incorrectly formatted string, expected
'
in
'
+ index or
'
out
'
+ index
"
)
f
"
Incorrectly formatted string, expected
'
in
'
+ index or
'
out
'
+ index
, got:
{
port_str
!r}
"
)
@property
def
execution_time
(
self
)
->
int
:
...
...
@@ -666,6 +666,8 @@ class AbstractOperation(Operation, AbstractGraphComponent):
def
_get_plot_coordinates_for_execution_time
(
self
)
->
List
[
List
[
Number
]]:
# Always a rectangle, but easier if coordinates are returned
if
self
.
_execution_time
is
None
:
return
[]
return
[[
0
,
0
],
[
0
,
1
],
[
self
.
execution_time
,
1
],
[
self
.
execution_time
,
0
],
[
0
,
0
]]
def
_get_plot_coordinates_for_latency
(
self
)
->
List
[
List
[
Number
]]:
...
...
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