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
Merge requests
!261
Replaceop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Replaceop
replaceop
into
master
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
Oscar Gustafsson
requested to merge
replaceop
into
master
2 years ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Viewing commit
bcf36af7
Prev
Next
Show latest version
2 files
+
12
−
11
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
bcf36af7
Rename replace_component to replace_operation
· bcf36af7
Oscar Gustafsson
authored
2 years ago
b_asic/signal_flow_graph.py
+
6
−
5
Options
@@ -594,17 +594,18 @@ class SFG(AbstractOperation):
@@ -594,17 +594,18 @@ class SFG(AbstractOperation):
keys
.
append
(
comp
.
key
(
output_index
,
comp
.
graph_id
))
keys
.
append
(
comp
.
key
(
output_index
,
comp
.
graph_id
))
return
keys
return
keys
def
replace_
component
(
self
,
component
:
Operation
,
graph_id
:
GraphID
)
->
"
SFG
"
:
def
replace_
operation
(
self
,
component
:
Operation
,
graph_id
:
GraphID
)
->
"
SFG
"
:
"""
"""
Find and replace all components matching either on GraphID, Type or both.
Find and replace an operation based on GraphID.
Then return a new deepcopy of the sfg with the replaced component.
Then return a new deepcopy of the SFG with the replaced operation.
Parameters
Parameters
----------
----------
component : Operation
component : Operation
The new
component
(s), e.g. Multiplication
The new
operation
(s), e.g. Multiplication
graph_id : GraphID
graph_id : GraphID
The GraphID to match the
component
to replace.
The GraphID to match the
operation
to replace.
"""
"""
sfg_copy
=
self
()
# Copy to not mess with this SFG.
sfg_copy
=
self
()
# Copy to not mess with this SFG.
Loading