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
dca8af0e
Commit
dca8af0e
authored
4 years ago
by
Kevin
Browse files
Options
Downloads
Patches
Plain Diff
Need to merge with 80
parent
676a6e96
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!44
Resolve "Operation Replacement in a SFG"
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
b_asic/operation.py
+0
-5
0 additions, 5 deletions
b_asic/operation.py
b_asic/signal_flow_graph.py
+11
-2
11 additions, 2 deletions
b_asic/signal_flow_graph.py
test/test_core_operations.py
+0
-6
0 additions, 6 deletions
test/test_core_operations.py
test/test_sfg.py
+7
-7
7 additions, 7 deletions
test/test_sfg.py
with
18 additions
and
20 deletions
b_asic/operation.py
+
0
−
5
View file @
dca8af0e
...
...
@@ -180,11 +180,6 @@ class Operation(GraphComponent, SignalSourceProvider):
"""
raise
NotImplementedError
@abstractmethod
def
to_sfg
(
self
)
->
self
:
"""
Convert a operation to its correspnding
"""
class
AbstractOperation
(
Operation
,
AbstractGraphComponent
):
"""
Generic abstract operation class which most implementations will derive from.
TODO: More info.
...
...
This diff is collapsed.
Click to expand it.
b_asic/signal_flow_graph.py
+
11
−
2
View file @
dca8af0e
...
...
@@ -410,13 +410,22 @@ class SFG(AbstractOperation):
Then return a new deepcopy of the sfg with the replaced operations.
Arguments:
inputs: The inputs of the operations we are replacing.
outputs: The outputs of the operations we are replacing.
operation_ids: The id
'
s of the operations we are replacing
operation: The operation used for replacement.
"""
operations
=
[
self
.
find_by_id
(
_id
)
for
_id
in
operation_ids
]
assert
sum
(
o
.
input_count
+
o
.
output_count
for
o
in
operations
)
==
operation
.
input_count
+
operation
.
output_count
,
\
"
The input and output count must match
"
# Create a copy of the sfg for manipulating
_sfg
=
self
()
for
operation
in
operations
:
operation
for
_index
,
_inp
in
enumerate
(
inputs
):
for
_signal
in
_inp
.
output_signals
:
_signal
.
remove_destination
()
...
...
This diff is collapsed.
Click to expand it.
test/test_core_operations.py
+
0
−
6
View file @
dca8af0e
...
...
@@ -168,9 +168,3 @@ class TestButterfly:
but1
=
Butterfly
()
split
=
but1
.
split
()
assert
len
(
split
)
==
2
class
TestMad
:
def
test_split_mad
(
self
):
mad1
=
MAD
()
res
=
mad1
.
split
()
assert
len
(
res
)
==
2
This diff is collapsed.
Click to expand it.
test/test_sfg.py
+
7
−
7
View file @
dca8af0e
...
...
@@ -274,20 +274,20 @@ class TestReplaceOperations:
def
test_replace_neg_add_with_sub
(
self
):
in1
=
Input
()
in2
=
Input
()
neg
=
ConstantMultiplication
(
-
1
,
in1
)
add1
=
neg
+
in2
neg
1
=
ConstantMultiplication
(
-
1
,
in1
)
add1
=
neg
1
+
in2
out1
=
Output
(
add1
)
sfg
=
SFG
(
inputs
=
[
in1
,
in2
],
outputs
=
[
out1
])
sub1
=
Subtraction
()
sfg
.
replace_operations
([
in1
,
in2
],
[
out1
],
sub1
)
sfg
.
replace_operations
([
'
add1, neg1
'
],
sub1
)
assert
sub1
in
sfg
.
operations
assert
{
add1
,
neg
}
not
in
sfg
.
operations
assert
{
add1
,
neg
1
}
not
in
sfg
.
operations
def
test_
not_equal_functionallity
(
self
,
operation_tree
):
def
test_
different_input_output_count
(
self
,
operation_tree
):
sfg
=
SFG
(
outputs
=
[
Output
(
operation_tree
)])
mul1
=
Multiplication
()
const
mul1
=
Constant
Multiplication
()
with
pytest
.
raises
(
AssertionError
):
sfg
.
replace_operations
([
sfg
.
inputs
(
0
),
sfg
.
inputs
(
1
)],
[
sfg
.
outputs
(
0
)],
mul1
)
sfg
.
replace_operations
([
'
add1
'
],
const
mul1
)
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