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
53e8fd7a
Commit
53e8fd7a
authored
1 year ago
by
Petter Källström
Browse files
Options
Downloads
Patches
Plain Diff
plot_window: changed type(obj)==xxx to isinstance(obj, xxx)
parent
6ff479dd
No related branches found
No related tags found
1 merge request
!312
Draft: Added support for plotting result from many simulations. Solves #209
Pipeline
#95831
passed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/gui_utils/plot_window.py
+15
-17
15 additions, 17 deletions
b_asic/gui_utils/plot_window.py
with
15 additions
and
17 deletions
b_asic/gui_utils/plot_window.py
+
15
−
17
View file @
53e8fd7a
...
...
@@ -67,17 +67,17 @@ class PlotWindow(QWidget):
########### Flattening sim_result, if it is a list of results #######
# take: sim_result (possibly on form ['name1', simres1, 'name2', simres2, ...]
# generate: sim_result (dict)
if
typ
e
(
sim_result
)
==
Simulation
:
if
isinstanc
e
(
sim_result
,
Simulation
)
:
sim_result
=
sim_result
.
_results
assert
typ
e
(
sim_result
)
==
dict
,
TypeError
(
assert
isinstanc
e
(
sim_result
,
dict
)
,
TypeError
(
"
Parsing sim_result as a Simulation, but the _result seems broken.
"
)
elif
typ
e
(
sim_result
)
==
list
:
elif
isinstanc
e
(
sim_result
,
list
)
:
new_result
=
dict
()
nr
=
0
# value number. Used for automatic names.
name
=
None
for
element
in
sim_result
:
if
typ
e
(
element
)
==
str
:
if
isinstanc
e
(
element
,
str
)
:
assert
not
name
,
Exception
(
"
Parsing sim_result as a list. Did you provide two names after
"
"
each other?
"
...
...
@@ -87,11 +87,11 @@ class PlotWindow(QWidget):
if
not
name
:
nr
=
nr
+
1
name
=
"
(res
"
+
str
(
nr
)
+
"
)
"
if
typ
e
(
element
)
==
dict
:
if
isinstanc
e
(
element
,
dict
)
:
res
=
element
elif
typ
e
(
element
)
==
Simulation
:
elif
isinstanc
e
(
element
,
Simulation
)
:
res
=
element
.
_results
assert
typ
e
(
res
)
==
dict
,
TypeError
(
assert
isinstanc
e
(
res
,
dict
)
,
TypeError
(
f
"
Parsing sim_result as a list. Result
'
{
name
}
'
is a
"
"
Simulation, and its _result seems broken.
"
)
...
...
@@ -110,10 +110,10 @@ class PlotWindow(QWidget):
"
in the list?
"
)
sim_result
=
new_result
elif
typ
e
(
sim_result
)
!=
dict
:
elif
not
isinstanc
e
(
sim_result
,
dict
)
:
raise
TypeError
(
"
sim_result must be a dict, Simulation or list.
Found
"
f
"
{
type
(
sim_result
)
}
"
"
sim_result must be a dict, Simulation or list.
"
f
"
Found
{
type
(
sim_result
)
}
"
)
########### Categorizing/sorting/renaming sim_results: ##############
...
...
@@ -335,7 +335,7 @@ def start_simulation_dialog(
# Simple test of the dialog
if
__name__
==
"
__main__
"
:
sim_
res1
=
{
res1
=
{
'
0
'
:
[
1.5
,
1.6
,
1.5
,
1
],
'
1
'
:
[
1.0
,
2.0
,
1.5
,
1.1
],
'
add1
'
:
[
1.5
,
1.5
,
1
,
1
],
...
...
@@ -347,7 +347,7 @@ if __name__ == "__main__":
'
t2
'
:
[
1
,
1
,
2
,
1
],
'
t3
'
:
[
1
,
1
,
1
,
2
],
}
sim_
res2
=
{
res2
=
{
'
0
'
:
[
0.5
,
0.6
,
0.5
,
0
],
'
1
'
:
[
0.0
,
1.0
+
0.3j
,
0.5
,
0.1j
],
'
add1
'
:
[
0.5
,
0.5
,
0
,
0
],
...
...
@@ -359,11 +359,9 @@ if __name__ == "__main__":
'
t2
'
:
[
0
,
0
,
1
,
0
],
'
t3
'
:
[
0
,
0
,
0
,
1
],
}
sim_
res3
=
{
res3
=
{
'
0
'
:
np
.
random
.
rand
(
200
).
tolist
(),
'
1
'
:
np
.
random
.
rand
(
200
).
tolist
(),
}
# start_simulation_dialog(sim_res3)
start_simulation_dialog
(
[
'
simReal
'
,
sim_res1
,
'
simCpx
'
,
sim_res2
,
sim_res3
],
"
Test data
"
)
# start_simulation_dialog(res3)
start_simulation_dialog
([
'
Real
'
,
res1
,
'
Cpx
'
,
res2
,
res3
],
"
Test data
"
)
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