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
d5ef44cf
Commit
d5ef44cf
authored
1 year ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Add support for color in Architecture
parent
5be86917
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!395
Add support for color in Architecture
Pipeline
#97612
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/_preferences.py
+8
-0
8 additions, 0 deletions
b_asic/_preferences.py
b_asic/architecture.py
+122
-25
122 additions, 25 deletions
b_asic/architecture.py
test/test_architecture.py
+33
-31
33 additions, 31 deletions
test/test_architecture.py
with
163 additions
and
56 deletions
b_asic/_preferences.py
+
8
−
0
View file @
d5ef44cf
...
...
@@ -10,3 +10,11 @@ OPERATION_GAP: float = 0.5
SCHEDULE_OFFSET
:
float
=
0.2
SPLINE_OFFSET
:
float
=
0.2
PE_COLOR
=
(
0
,
185
,
231
)
# LiuBlue
PE_CLUSTER_COLOR
=
(
210
,
238
,
249
)
# LiuBlue5
MEMORY_COLOR
=
(
0
,
207
,
181
)
# LiuGreen
MEMORY_CLUSTER_COLOR
=
(
213
,
241
,
235
)
# LiuGreen5
IO_COLOR
=
(
23
,
199
,
210
)
# LiuTurqoise
IO_CLUSTER_COLOR
=
(
215
,
239
,
242
)
# LiuTurqoise5
MUX_COLOR
=
(
255
,
100
,
66
)
# LiuOrange
This diff is collapsed.
Click to expand it.
b_asic/architecture.py
+
122
−
25
View file @
d5ef44cf
...
...
@@ -21,6 +21,15 @@ from typing import (
import
matplotlib.pyplot
as
plt
from
graphviz
import
Digraph
from
b_asic._preferences
import
(
IO_CLUSTER_COLOR
,
IO_COLOR
,
MEMORY_CLUSTER_COLOR
,
MEMORY_COLOR
,
MUX_COLOR
,
PE_CLUSTER_COLOR
,
PE_COLOR
,
)
from
b_asic.codegen.vhdl.common
import
is_valid_vhdl_identifier
from
b_asic.operation
import
Operation
from
b_asic.port
import
InputPort
,
OutputPort
...
...
@@ -163,7 +172,9 @@ class Resource(HardwareBlock):
def
_digraph
(
self
)
->
Digraph
:
dg
=
Digraph
(
node_attr
=
{
'
shape
'
:
'
record
'
})
dg
.
node
(
self
.
entity_name
,
self
.
_struct_def
())
dg
.
node
(
self
.
entity_name
,
self
.
_struct_def
(),
style
=
'
filled
'
,
fillcolor
=
self
.
_color
)
return
dg
@property
...
...
@@ -330,6 +341,8 @@ class ProcessingElement(Resource):
Perform assignment when creating the ProcessingElement.
"""
_color
=
f
"
#
{
''
.
join
(
f
'
{
v
:
0
>
2
X
}
'
for v in PE_COLOR)
}
"
def
__init__
(
self
,
process_collection
:
ProcessCollection
,
...
...
@@ -408,6 +421,8 @@ class Memory(Resource):
"""
_color
=
f
"
#
{
''
.
join
(
f
'
{
v
:
0
>
2
X
}
'
for v in MEMORY_COLOR)
}
"
def
__init__
(
self
,
process_collection
:
ProcessCollection
,
...
...
@@ -617,6 +632,7 @@ of :class:`~b_asic.architecture.ProcessingElement`
pe_input_ports
.
update
(
operator
.
operation
.
inputs
)
pe_output_ports
.
update
(
operator
.
operation
.
outputs
)
# Make sure all inputs and outputs in the architecture are in use
read_port_diff
=
memory_read_ports
.
symmetric_difference
(
pe_input_ports
)
write_port_diff
=
memory_write_ports
.
symmetric_difference
(
pe_output_ports
)
if
read_port_diff
:
...
...
@@ -629,18 +645,17 @@ of :class:`~b_asic.architecture.ProcessingElement`
"
Memory read port and PE output port difference:
"
f
"
{
[
port
.
name
for
port
in
write_port_diff
]
}
"
)
# Make sure all inputs and outputs in the architecture are in use
def
get_interconnects_for_memory
(
self
,
mem
:
Memory
self
,
mem
:
Union
[
Memory
,
str
]
)
->
Tuple
[
Dict
[
Resource
,
int
],
Dict
[
Resource
,
int
]]:
"""
Return a dictionary with interconnect information for a Memory.
Parameters
----------
mem : :class:`Memory`
The memory to obtain information about.
mem : :class:`Memory`
or str
The memory
or entity name
to obtain information about.
Returns
-------
...
...
@@ -648,6 +663,9 @@ of :class:`~b_asic.architecture.ProcessingElement`
A dictionary with the ProcessingElements that are connected to the write and
read ports, respectively, with counts of the number of accesses.
"""
if
isinstance
(
mem
,
str
):
mem
=
cast
(
Memory
,
self
.
resource_from_name
(
mem
))
d_in
:
DefaultDict
[
Resource
,
int
]
=
defaultdict
(
_interconnect_dict
)
d_out
:
DefaultDict
[
Resource
,
int
]
=
defaultdict
(
_interconnect_dict
)
for
var
in
mem
.
collection
:
...
...
@@ -658,7 +676,7 @@ of :class:`~b_asic.architecture.ProcessingElement`
return
dict
(
d_in
),
dict
(
d_out
)
def
get_interconnects_for_pe
(
self
,
pe
:
ProcessingElement
self
,
pe
:
Union
[
str
,
ProcessingElement
]
)
->
Tuple
[
List
[
Dict
[
Tuple
[
Resource
,
int
],
int
]],
List
[
Dict
[
Tuple
[
Resource
,
int
],
int
]]
]:
...
...
@@ -668,8 +686,8 @@ of :class:`~b_asic.architecture.ProcessingElement`
Parameters
----------
pe : :class:`ProcessingElement`
The processing element to get information for.
pe : :class:`ProcessingElement`
or str
The processing element
or entity name
to get information for.
Returns
-------
...
...
@@ -681,6 +699,9 @@ of :class:`~b_asic.architecture.ProcessingElement`
frequency of accesses.
"""
if
isinstance
(
pe
,
str
):
pe
=
cast
(
ProcessingElement
,
self
.
resource_from_name
(
pe
))
d_in
:
List
[
DefaultDict
[
Tuple
[
Resource
,
int
],
int
]]
=
[
defaultdict
(
_interconnect_dict
)
for
_
in
range
(
pe
.
input_count
)
]
...
...
@@ -720,11 +741,11 @@ of :class:`~b_asic.architecture.ProcessingElement`
Parameters
----------
proc : :class:`b_asic.process.Process` or string
The process (or its
given
name) to move.
re_from : :class:`b_asic.architecture.Resource` or str
ing
The resource (or its
given
name) to move the process from.
re_to : :class:`b_asic.architecture.Resource` or str
ing
The resource (or its
given
name) to move the process to.
The process (or its name) to move.
re_from : :class:`b_asic.architecture.Resource` or str
The resource (or its
entity
name) to move the process from.
re_to : :class:`b_asic.architecture.Resource` or str
The resource (or its
entity
name) to move the process to.
assign : bool, default=False
Whether to perform assignment of the resources after moving.
"""
...
...
@@ -753,43 +774,118 @@ of :class:`~b_asic.architecture.ProcessingElement`
splines
:
str
=
"
spline
"
,
io_cluster
:
bool
=
True
,
show_multiplexers
:
bool
=
True
,
colored
:
bool
=
True
,
)
->
Digraph
:
"""
Parameters
----------
branch_node : bool, default: True
Whether to create a branch node for outputs with fan-out of two or higher.
cluster : bool, default: True
Whether to draw memories and PEs in separate clusters.
splines : str, default:
"
spline
"
The type of interconnect to use for graph drawing.
io_cluster : bool, default: True
Whether Inputs and Outputs are drawn inside an IO cluster.
show_multiplexers : bool, default: True
Whether input multiplexers are included.
colored : bool, default: True
Whether to color the nodes.
"""
dg
=
Digraph
(
node_attr
=
{
'
shape
'
:
'
record
'
})
dg
.
attr
(
splines
=
splines
)
# Setup colors
pe_color
=
(
f
"
#
{
''
.
join
(
f
'
{
v
:
0
>
2
X
}
'
for v in PE_COLOR)
}
"
if
colored
else
"
transparent
"
)
pe_cluster_color
=
(
f
"
#
{
''
.
join
(
f
'
{
v
:
0
>
2
X
}
'
for v in PE_CLUSTER_COLOR)
}
"
if
colored
else
"
transparent
"
)
memory_color
=
(
f
"
#
{
''
.
join
(
f
'
{
v
:
0
>
2
X
}
'
for v in MEMORY_COLOR)
}
"
if
colored
else
"
transparent
"
)
memory_cluster_color
=
(
f
"
#
{
''
.
join
(
f
'
{
v
:
0
>
2
X
}
'
for v in MEMORY_CLUSTER_COLOR)
}
"
if
colored
else
"
transparent
"
)
io_color
=
(
f
"
#
{
''
.
join
(
f
'
{
v
:
0
>
2
X
}
'
for v in IO_COLOR)
}
"
if
colored
else
"
transparent
"
)
io_cluster_color
=
(
f
"
#
{
''
.
join
(
f
'
{
v
:
0
>
2
X
}
'
for v in IO_CLUSTER_COLOR)
}
"
if
colored
else
"
transparent
"
)
mux_color
=
(
f
"
#
{
''
.
join
(
f
'
{
v
:
0
>
2
X
}
'
for v in MUX_COLOR)
}
"
if
colored
else
"
transparent
"
)
# Add nodes for memories and PEs to graph
if
cluster
:
# Add subgraphs
if
len
(
self
.
_memories
):
with
dg
.
subgraph
(
name
=
'
cluster_memories
'
)
as
c
:
for
mem
in
self
.
_memories
:
c
.
node
(
mem
.
entity_name
,
mem
.
_struct_def
())
c
.
node
(
mem
.
entity_name
,
mem
.
_struct_def
(),
style
=
'
filled
'
,
fillcolor
=
memory_color
,
)
label
=
"
Memory
"
if
len
(
self
.
_memories
)
<=
1
else
"
Memories
"
c
.
attr
(
label
=
label
)
c
.
attr
(
label
=
label
,
bgcolor
=
memory_cluster_color
)
with
dg
.
subgraph
(
name
=
'
cluster_pes
'
)
as
c
:
for
pe
in
self
.
_processing_elements
:
if
pe
.
_type_name
not
in
(
'
in
'
,
'
out
'
):
c
.
node
(
pe
.
entity_name
,
pe
.
_struct_def
())
c
.
node
(
pe
.
entity_name
,
pe
.
_struct_def
(),
style
=
'
filled
'
,
fillcolor
=
pe_color
,
)
label
=
(
"
Processing element
"
if
len
(
self
.
_processing_elements
)
<=
1
else
"
Processing elements
"
)
c
.
attr
(
label
=
label
)
c
.
attr
(
label
=
label
,
bgcolor
=
pe_cluster_color
)
if
io_cluster
:
with
dg
.
subgraph
(
name
=
'
cluster_io
'
)
as
c
:
for
pe
in
self
.
_processing_elements
:
if
pe
.
_type_name
in
(
'
in
'
,
'
out
'
):
c
.
node
(
pe
.
entity_name
,
pe
.
_struct_def
())
c
.
attr
(
label
=
"
IO
"
)
c
.
node
(
pe
.
entity_name
,
pe
.
_struct_def
(),
style
=
'
filled
'
,
fillcolor
=
io_color
,
)
c
.
attr
(
label
=
"
IO
"
,
bgcolor
=
io_cluster_color
)
else
:
for
pe
in
self
.
_processing_elements
:
if
pe
.
_type_name
in
(
'
in
'
,
'
out
'
):
dg
.
node
(
pe
.
entity_name
,
pe
.
_struct_def
())
dg
.
node
(
pe
.
entity_name
,
pe
.
_struct_def
(),
style
=
'
filled
'
,
fillcolor
=
io_color
,
)
else
:
for
i
,
mem
in
enumerate
(
self
.
_memories
):
dg
.
node
(
mem
.
entity_name
,
mem
.
_struct_def
())
dg
.
node
(
mem
.
entity_name
,
mem
.
_struct_def
(),
style
=
'
filled
'
,
fillcolor
=
memory_color
,
)
for
i
,
pe
in
enumerate
(
self
.
_processing_elements
):
dg
.
node
(
pe
.
entity_name
,
pe
.
_struct_def
())
dg
.
node
(
pe
.
entity_name
,
pe
.
_struct_def
(),
style
=
'
filled
'
,
fillcolor
=
pe_color
)
# Create list of interconnects
edges
:
DefaultDict
[
str
,
Set
[
Tuple
[
str
,
str
]]]
=
defaultdict
(
set
)
...
...
@@ -830,9 +926,10 @@ of :class:`~b_asic.architecture.ProcessingElement`
ret
+=
f
"
{{
{
'
|
'
.
join
(
in_strs
)
}
}}|
"
name
=
f
"
{
destination
.
replace
(
'
:
'
,
'
_
'
)
}
_mux
"
ret
+=
f
"
<
{
name
}
>
{
name
}
"
ret
+=
"
|<out> out
"
dg
.
node
(
name
,
"
{
"
+
ret
+
"
}
"
)
dg
.
edge
(
f
"
{
name
}
:out
"
,
destination
)
ret
+=
"
|<out0> out0
"
dg
.
node
(
name
,
"
{
"
+
ret
+
"
}
"
,
style
=
'
filled
'
,
fillcolor
=
mux_color
)
# Add edge from mux output to resource input
dg
.
edge
(
f
"
{
name
}
:out0
"
,
destination
)
# Add edges to graph
for
src_str
,
destination_counts
in
edges
.
items
():
...
...
This diff is collapsed.
Click to expand it.
test/test_architecture.py
+
33
−
31
View file @
d5ef44cf
from
itertools
import
chain
from
typing
import
List
,
cast
from
typing
import
List
import
pytest
from
b_asic.architecture
import
Architecture
,
Memory
,
ProcessingElement
from
b_asic.core_operations
import
Addition
,
ConstantMultiplication
from
b_asic.process
import
MemoryVariable
,
OperatorProcess
,
PlainMemoryVariable
from
b_asic.process
import
PlainMemoryVariable
from
b_asic.resources
import
ProcessCollection
from
b_asic.schedule
import
Schedule
from
b_asic.special_operations
import
Input
,
Output
...
...
@@ -95,21 +95,24 @@ def test_architecture(schedule_direct_form_iir_lp_filter: Schedule):
assert
len
(
outputs
)
==
1
# Create necessary processing elements
adder
=
ProcessingElement
(
adders
[
0
],
entity_name
=
"
adder
"
)
multiplier
=
ProcessingElement
(
const_mults
[
0
],
entity_name
=
"
multiplier
"
)
input_pe
=
ProcessingElement
(
inputs
[
0
],
entity_name
=
"
input
"
)
output_pe
=
ProcessingElement
(
outputs
[
0
],
entity_name
=
"
output
"
)
processing_elements
:
List
[
ProcessingElement
]
=
[
ProcessingElement
(
operation
)
for
operation
in
chain
(
adders
,
const_mults
,
inputs
,
outputs
)
adder
,
multiplier
,
input_pe
,
output_pe
,
]
for
i
,
pe
in
enumerate
(
processing_elements
):
pe
.
set_entity_name
(
f
"
{
pe
.
_type_name
.
upper
()
}{
i
}
"
)
if
pe
.
_type_name
==
'
add
'
:
s
=
(
'
digraph {
\n\t
node [shape=record]
\n\t
'
+
pe
.
entity_name
+
'
[label=
"
{{<in0> in0|<in1> in1}|
'
+
f
'
<
{
pe
.
entity_name
}
>
{
pe
.
entity_name
}
'
+
'
|{<out0> out0}}
"
]
\n
}
'
)
assert
pe
.
_digraph
().
source
in
(
s
,
s
+
'
\n
'
)
s
=
(
'
digraph {
\n\t
node [shape=record]
\n\t
'
+
"
adder
"
+
'
[label=
"
{{<in0> in0|<in1> in1}|
'
+
'
<adder> adder
'
+
'
|{<out0> out0}}
"
fillcolor=
"
#00B9E7
"
style=filled]
\n
}
'
)
assert
adder
.
_digraph
().
source
in
(
s
,
s
+
'
\n
'
)
# Extract zero-length memory variables
direct_conn
,
mvs
=
mvs
.
split_on_length
()
...
...
@@ -124,16 +127,28 @@ def test_architecture(schedule_direct_form_iir_lp_filter: Schedule):
memory
.
set_entity_name
(
f
"
MEM
{
i
}
"
)
s
=
(
'
digraph {
\n\t
node [shape=record]
\n\t
MEM0 [label=
"
{{<in0> in0}|<MEM0>
'
'
MEM0|{<out0> out0}}
"
]
\n
}
'
'
MEM0|{<out0> out0}}
"
fillcolor=
"
#00CFB5
"
style=filled
]
\n
}
'
)
assert
memory
.
schedule_time
==
18
assert
memory
.
_digraph
().
source
in
(
s
,
s
+
'
\n
'
)
assert
not
memory
.
is_assigned
memory
.
assign
()
assert
memory
.
is_assigned
assert
len
(
memory
.
_assignment
)
==
4
# Set invalid name
with
pytest
.
raises
(
ValueError
,
match
=
'
32 is not a valid VHDL identifier
'
):
adder
.
set_entity_name
(
"
32
"
)
assert
adder
.
entity_name
==
"
adder
"
# Create architecture from
architecture
=
Architecture
(
processing_elements
,
memories
,
direct_interconnects
=
direct_conn
)
assert
architecture
.
direct_interconnects
==
direct_conn
# Graph representation
# Parts are non-deterministic, but this first part seems OK
s
=
(
'
digraph {
\n\t
node [shape=record]
\n\t
splines=spline
\n\t
subgraph
'
...
...
@@ -144,23 +159,10 @@ def test_architecture(schedule_direct_form_iir_lp_filter: Schedule):
assert
architecture
.
_digraph
(
cluster
=
False
).
source
.
startswith
(
s
)
assert
architecture
.
schedule_time
==
18
# assert architecture._digraph().source == "foo"
for
pe
in
processing_elements
:
print
(
pe
)
assert
pe
.
schedule_time
==
18
for
operation
in
pe
.
_collection
:
operation
=
cast
(
OperatorProcess
,
operation
)
print
(
f
'
{
operation
}
'
)
print
(
architecture
.
get_interconnects_for_pe
(
pe
))
print
(
""
)
print
(
""
)
for
memory
in
memories
:
print
(
memory
)
for
mv
in
memory
.
_collection
:
mv
=
cast
(
MemoryVariable
,
mv
)
print
(
f
'
{
mv
.
start_time
}
->
{
mv
.
execution_time
}
:
{
mv
.
write_port
.
name
}
'
)
print
(
architecture
.
get_interconnects_for_memory
(
memory
))
assert
architecture
.
resource_from_name
(
'
adder
'
)
==
adder
def
test_move_process
(
schedule_direct_form_iir_lp_filter
:
Schedule
):
...
...
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