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
e8594ea6
Commit
e8594ea6
authored
1 year ago
by
Petter Källström
Browse files
Options
Downloads
Patches
Plain Diff
plot_window: Added support for complex data
parent
0e5aa57d
No related branches found
Branches containing commit
No related tags found
1 merge request
!295
plot_window: Added support for complex data
Pipeline
#94483
passed
1 year ago
Stage: test
Stage: deploy
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/gui_utils/plot_window.py
+50
-29
50 additions, 29 deletions
b_asic/gui_utils/plot_window.py
with
50 additions
and
29 deletions
b_asic/gui_utils/plot_window.py
+
50
−
29
View file @
e8594ea6
...
@@ -2,8 +2,10 @@
...
@@ -2,8 +2,10 @@
import
re
import
re
import
sys
import
sys
from
typing
import
Dict
,
List
,
Mapping
,
Optional
,
Sequence
,
Union
from
typing
import
Dict
,
List
,
Mapping
,
Optional
,
Sequence
#
, Union
# from numpy import (array, real, imag, real_if_close, absolute, angle)
import
numpy
as
np
from
matplotlib.backends.backend_qt5agg
import
FigureCanvasQTAgg
as
FigureCanvas
from
matplotlib.backends.backend_qt5agg
import
FigureCanvasQTAgg
as
FigureCanvas
from
matplotlib.backends.backend_qt5agg
import
NavigationToolbar2QT
as
NavigationToolbar
from
matplotlib.backends.backend_qt5agg
import
NavigationToolbar2QT
as
NavigationToolbar
from
matplotlib.figure
import
Figure
from
matplotlib.figure
import
Figure
...
@@ -60,21 +62,48 @@ class PlotWindow(QWidget):
...
@@ -60,21 +62,48 @@ class PlotWindow(QWidget):
self
.
setWindowTitle
(
title
)
self
.
setWindowTitle
(
title
)
self
.
_auto_redraw
=
False
self
.
_auto_redraw
=
False
# Categorise sim_results into inputs, outputs, delays, others
########### Categorizing/sorting/renaming sim_results: ##############
sim_res_ins
=
{}
# take: sim_results
sim_res_outs
=
{}
# generate: key_order, initially_checked
sim_res_delays
=
{}
# generate: updated_result
sim_res_others
=
{}
initially_checked
=
[]
dict_to_sort
=
{}
# use key=m+1/n, where m:3=input, 4=output, 2=T, 1=others
for
key
in
sim_result
:
updated_result
=
{}
n
=
0
for
key
,
result
in
sim_result
.
items
():
key2
=
key
# in most cases
if
re
.
fullmatch
(
"
in[0-9]+
"
,
key
):
if
re
.
fullmatch
(
"
in[0-9]+
"
,
key
):
sim_res_ins
[
key
]
=
sim_result
[
key
]
m
=
4
elif
re
.
fullmatch
(
"
[0-9]+
"
,
key
):
elif
re
.
fullmatch
(
"
[0-9]+
"
,
key
):
sim_res_outs
[
key
]
=
sim_result
[
key
]
m
=
3
key2
=
'
o
'
+
key
elif
re
.
fullmatch
(
"
t[0-9]+
"
,
key
):
elif
re
.
fullmatch
(
"
t[0-9]+
"
,
key
):
sim_res_delays
[
key
]
=
sim_result
[
key
]
m
=
2
else
:
m
=
1
if
all
(
np
.
imag
(
np
.
real_if_close
(
result
))
==
0
):
n
=
n
+
1
dict_to_sort
[
m
+
1
/
n
]
=
key2
updated_result
[
key2
]
=
np
.
real
(
result
)
if
m
==
3
:
# output
initially_checked
.
append
(
key2
)
else
:
else
:
sim_res_others
[
key
]
=
sim_result
[
key
]
# The same again, but split into several lines
dict_to_sort
[
m
+
1
/
(
n
+
1
)]
=
key2
+
'
_re
'
dict_to_sort
[
m
+
1
/
(
n
+
2
)]
=
key2
+
'
_im
'
dict_to_sort
[
m
+
1
/
(
n
+
3
)]
=
key2
+
'
_mag
'
dict_to_sort
[
m
+
1
/
(
n
+
4
)]
=
key2
+
'
_ang
'
updated_result
[
key2
+
'
_re
'
]
=
np
.
real
(
result
)
updated_result
[
key2
+
'
_im
'
]
=
np
.
imag
(
result
)
updated_result
[
key2
+
'
_mag
'
]
=
np
.
absolute
(
result
)
updated_result
[
key2
+
'
_ang
'
]
=
np
.
angle
(
result
)
n
=
n
+
4
if
m
==
3
:
# output
initially_checked
.
append
(
key2
+
'
_re
'
)
initially_checked
.
append
(
key2
+
'
_im
'
)
key_order
=
list
(
dict
(
sorted
(
dict_to_sort
.
items
(),
reverse
=
True
)).
values
())
# Layout: ############################################
# Layout: ############################################
# | list | icons |
# | list | icons |
...
@@ -100,15 +129,9 @@ class PlotWindow(QWidget):
...
@@ -100,15 +129,9 @@ class PlotWindow(QWidget):
self
.
_plot_axes
=
self
.
_plot_fig
.
add_subplot
(
111
)
self
.
_plot_axes
=
self
.
_plot_fig
.
add_subplot
(
111
)
self
.
_plot_axes
.
xaxis
.
set_major_locator
(
MaxNLocator
(
integer
=
True
))
self
.
_plot_axes
.
xaxis
.
set_major_locator
(
MaxNLocator
(
integer
=
True
))
# Use | when dropping support for Python 3.8
ordered_for_plotting
=
{}
ordered_for_plotting
.
update
(
sim_res_others
)
ordered_for_plotting
.
update
(
sim_res_delays
)
ordered_for_plotting
.
update
(
sim_res_ins
)
ordered_for_plotting
.
update
(
sim_res_outs
)
self
.
_lines
=
{}
self
.
_lines
=
{}
for
key
,
result
in
ordered_for_plotting
.
items
()
:
for
key
in
key_order
:
line
=
self
.
_plot_axes
.
plot
(
sim
_result
[
key
],
label
=
key
)
line
=
self
.
_plot_axes
.
plot
(
updated
_result
[
key
],
label
=
key
)
self
.
_lines
[
key
]
=
line
[
0
]
self
.
_lines
[
key
]
=
line
[
0
]
self
.
_plot_canvas
=
FigureCanvas
(
self
.
_plot_fig
)
self
.
_plot_canvas
=
FigureCanvas
(
self
.
_plot_fig
)
...
@@ -133,20 +156,14 @@ class PlotWindow(QWidget):
...
@@ -133,20 +156,14 @@ class PlotWindow(QWidget):
self
.
_checklist
.
setSizePolicy
(
QSizePolicy
.
Preferred
,
QSizePolicy
.
Preferred
)
self
.
_checklist
.
setSizePolicy
(
QSizePolicy
.
Preferred
,
QSizePolicy
.
Preferred
)
self
.
_checklist
.
itemChanged
.
connect
(
self
.
_item_change
)
self
.
_checklist
.
itemChanged
.
connect
(
self
.
_item_change
)
listitems
=
{}
listitems
=
{}
# Use | when dropping support for Python 3.8
for
key
in
key_order
:
ordered_for_checklist
=
{}
ordered_for_checklist
.
update
(
sim_res_ins
)
ordered_for_checklist
.
update
(
sim_res_outs
)
ordered_for_checklist
.
update
(
sim_res_delays
)
ordered_for_checklist
.
update
(
sim_res_others
)
for
key
in
ordered_for_checklist
:
list_item
=
QListWidgetItem
(
key
)
list_item
=
QListWidgetItem
(
key
)
listitems
[
key
]
=
list_item
listitems
[
key
]
=
list_item
self
.
_checklist
.
addItem
(
list_item
)
self
.
_checklist
.
addItem
(
list_item
)
list_item
.
setCheckState
(
list_item
.
setCheckState
(
Qt
.
CheckState
.
Unchecked
# CheckState: Qt.CheckState.{Unchecked, PartiallyChecked, Checked}
Qt
.
CheckState
.
Unchecked
# CheckState: Qt.CheckState.{Unchecked, PartiallyChecked, Checked}
)
)
for
key
in
sim_res_outs
:
for
key
in
initially_checked
:
listitems
[
key
].
setCheckState
(
Qt
.
CheckState
.
Checked
)
listitems
[
key
].
setCheckState
(
Qt
.
CheckState
.
Checked
)
# self._checklist.setFixedWidth(150)
# self._checklist.setFixedWidth(150)
listlayout
.
addWidget
(
self
.
_checklist
)
listlayout
.
addWidget
(
self
.
_checklist
)
...
@@ -248,11 +265,15 @@ def start_simulation_dialog(
...
@@ -248,11 +265,15 @@ def start_simulation_dialog(
# Simple test of the dialog
# Simple test of the dialog
if
__name__
==
"
__main__
"
:
if
__name__
==
"
__main__
"
:
sim_res
=
{
sim_res
=
{
'
0
'
:
[
0.5
,
0.5
,
0
,
0
],
'
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
],
'
add1
'
:
[
0.5
,
0.5
,
0
,
0
],
'
cmul1
'
:
[
0
,
0.5
,
0
,
0
],
'
cmul1
'
:
[
0
,
0.5
,
0
,
0
],
'
cmul2
'
:
[
0.5
,
0
,
0
,
0
],
'
cmul2
'
:
[
0.5
,
0
,
0
,
0
],
'
in1
'
:
[
1
,
0
,
0
,
0
],
'
in1
'
:
[
1
,
0
,
0
,
0
],
'
in2
'
:
[
0.1
,
2
,
0
,
0
],
'
t1
'
:
[
0
,
1
,
0
,
0
],
'
t1
'
:
[
0
,
1
,
0
,
0
],
'
t2
'
:
[
0
,
0
,
1
,
0
],
'
t3
'
:
[
0
,
0
,
0
,
1
],
}
}
start_simulation_dialog
(
sim_res
,
"
Test data
"
)
start_simulation_dialog
(
sim_res
,
"
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