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
d584cd5a
Commit
d584cd5a
authored
2 years ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Fix typing in save_load_structure.py
parent
f37e93a5
No related branches found
No related tags found
1 merge request
!121
Fix typing in save_load_structure.py
Pipeline
#88405
passed
2 years ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/save_load_structure.py
+23
-17
23 additions, 17 deletions
b_asic/save_load_structure.py
with
23 additions
and
17 deletions
b_asic/save_load_structure.py
+
23
−
17
View file @
d584cd5a
...
...
@@ -7,13 +7,16 @@ as files.
from
datetime
import
datetime
from
inspect
import
signature
from
typing
import
Dict
,
Optional
,
Tuple
,
cast
from
b_asic.graph_component
import
GraphComponent
from
b_asic.port
import
InputPort
from
b_asic.signal_flow_graph
import
SFG
from
b_asic.special_operations
import
Input
,
Output
def
sfg_to_python
(
sfg
:
SFG
,
counter
:
int
=
0
,
suffix
:
str
=
None
)
->
str
:
def
sfg_to_python
(
sfg
:
SFG
,
counter
:
int
=
0
,
suffix
:
Optional
[
str
]
=
None
)
->
str
:
"""
Given an SFG structure try to serialize it for saving to a file.
...
...
@@ -39,20 +42,20 @@ def sfg_to_python(sfg: SFG, counter: int = 0, suffix: str = None) -> str:
)
result
+=
"
\n
from b_asic import SFG, Signal, Input, Output
"
for
op
in
{
type
(
op
)
for
op
in
sfg
.
operations
}:
result
+=
f
"
,
{
op
.
__name__
}
"
for
op
_type
in
{
type
(
op
)
for
op
in
sfg
.
operations
}:
result
+=
f
"
,
{
op
_type
.
__name__
}
"
def
kwarg_unpacker
(
comp
:
GraphComponent
,
params
=
None
)
->
str
:
if
params
is
None
:
params_filtered
=
{
attr
:
getattr
(
o
p
,
attr
)
for
attr
in
signature
(
o
p
.
__init__
).
parameters
if
attr
!=
"
latency
"
and
hasattr
(
o
p
,
attr
)
attr
:
getattr
(
com
p
,
attr
)
for
attr
in
signature
(
com
p
.
__init__
).
parameters
if
attr
!=
"
latency
"
and
hasattr
(
com
p
,
attr
)
}
params
=
{
attr
:
getattr
(
o
p
,
attr
)
if
not
isinstance
(
getattr
(
o
p
,
attr
),
str
)
else
f
'"
{
getattr
(
o
p
,
attr
)
}
"'
attr
:
getattr
(
com
p
,
attr
)
if
not
isinstance
(
getattr
(
com
p
,
attr
),
str
)
else
f
'"
{
getattr
(
com
p
,
attr
)
}
"'
for
attr
in
params_filtered
}
...
...
@@ -64,12 +67,14 @@ def sfg_to_python(sfg: SFG, counter: int = 0, suffix: str = None) -> str:
io_ops
=
[
*
sfg
.
_input_operations
,
*
sfg
.
_output_operations
]
result
+=
"
\n
# Inputs:
\n
"
for
op
in
sfg
.
_input_operations
:
result
+=
f
"
{
op
.
graph_id
}
= Input(
{
kwarg_unpacker
(
op
)
}
)
\n
"
for
input_
op
in
sfg
.
_input_operations
:
result
+=
f
"
{
input_
op
.
graph_id
}
= Input(
{
kwarg_unpacker
(
input_
op
)
}
)
\n
"
result
+=
"
\n
# Outputs:
\n
"
for
op
in
sfg
.
_output_operations
:
result
+=
f
"
{
op
.
graph_id
}
= Output(
{
kwarg_unpacker
(
op
)
}
)
\n
"
for
output_op
in
sfg
.
_output_operations
:
result
+=
(
f
"
{
output_op
.
graph_id
}
= Output(
{
kwarg_unpacker
(
output_op
)
}
)
\n
"
)
result
+=
"
\n
# Operations:
\n
"
for
op
in
sfg
.
split
():
...
...
@@ -90,10 +95,11 @@ def sfg_to_python(sfg: SFG, counter: int = 0, suffix: str = None) -> str:
for
op
in
sfg
.
split
():
for
out
in
op
.
outputs
:
for
signal
in
out
.
signals
:
dest_op
=
signal
.
destination
.
operation
destination
=
cast
(
InputPort
,
signal
.
destination
)
dest_op
=
destination
.
operation
connection
=
(
f
"
\n
Signal(source=
{
op
.
graph_id
}
.output(
{
op
.
outputs
.
index
(
signal
.
source
)
}
),
"
f
"
destination=
{
dest_op
.
graph_id
}
.input(
{
dest_op
.
inputs
.
index
(
signal
.
destination
)
}
))
"
f
"
destination=
{
dest_op
.
graph_id
}
.input(
{
dest_op
.
inputs
.
index
(
destination
)
}
))
"
)
if
connection
in
connections
:
continue
...
...
@@ -123,7 +129,7 @@ def sfg_to_python(sfg: SFG, counter: int = 0, suffix: str = None) -> str:
return
result
def
python_to_sfg
(
path
:
str
)
->
SFG
:
def
python_to_sfg
(
path
:
str
)
->
Tuple
[
SFG
,
Dict
[
str
,
Tuple
[
int
,
int
]]]
:
"""
Given a serialized file try to deserialize it and load it to the library.
...
...
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