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
4766320f
Commit
4766320f
authored
2 years ago
by
Frans Skarman
Committed by
Oscar Gustafsson
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Avoid duplicate inputs with fanout
parent
0ea2f654
No related branches found
No related tags found
1 merge request
!196
Avoid duplicate inputs with fanout
Pipeline
#89837
passed
2 years ago
Stage: test
Stage: deploy
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
b_asic/signal_flow_graph.py
+3
-2
3 additions, 2 deletions
b_asic/signal_flow_graph.py
test/test_operation.py
+1
-1
1 addition, 1 deletion
test/test_operation.py
test/test_sfg.py
+22
-0
22 additions, 0 deletions
test/test_sfg.py
with
26 additions
and
3 deletions
b_asic/signal_flow_graph.py
+
3
−
2
View file @
4766320f
...
@@ -565,7 +565,7 @@ class SFG(AbstractOperation):
...
@@ -565,7 +565,7 @@ class SFG(AbstractOperation):
@property
@property
def
operations
(
self
)
->
List
[
Operation
]:
def
operations
(
self
)
->
List
[
Operation
]:
"""
Get all operations of this graph in depth-first order.
"""
"""
Get all operations of this graph in depth-first order.
"""
return
self
.
_operations_dfs_order
return
list
(
self
.
_operations_dfs_order
)
def
find_by_type_name
(
def
find_by_type_name
(
self
,
type_name
:
TypeName
self
,
type_name
:
TypeName
...
@@ -1137,7 +1137,8 @@ class SFG(AbstractOperation):
...
@@ -1137,7 +1137,8 @@ class SFG(AbstractOperation):
self
.
_components_dfs_order
.
extend
(
self
.
_components_dfs_order
.
extend
(
[
new_signal
,
source
.
operation
]
[
new_signal
,
source
.
operation
]
)
)
self
.
_operations_dfs_order
.
append
(
source
.
operation
)
if
not
source
.
operation
in
self
.
_operations_dfs_order
:
self
.
_operations_dfs_order
.
append
(
source
.
operation
)
# Check if the signal has not been added before.
# Check if the signal has not been added before.
elif
(
elif
(
...
...
This diff is collapsed.
Click to expand it.
test/test_operation.py
+
1
−
1
View file @
4766320f
...
@@ -156,7 +156,7 @@ class TestToSfg:
...
@@ -156,7 +156,7 @@ class TestToSfg:
assert
but1
.
evaluate
(
1
,
1
)[
0
]
==
but1_sfg
.
evaluate
(
1
,
1
)[
0
]
assert
but1
.
evaluate
(
1
,
1
)[
0
]
==
but1_sfg
.
evaluate
(
1
,
1
)[
0
]
assert
but1
.
evaluate
(
1
,
1
)[
1
]
==
but1_sfg
.
evaluate
(
1
,
1
)[
1
]
assert
but1
.
evaluate
(
1
,
1
)[
1
]
==
but1_sfg
.
evaluate
(
1
,
1
)[
1
]
assert
len
(
but1_sfg
.
operations
)
==
8
assert
len
(
but1_sfg
.
operations
)
==
6
def
test_add_to_sfg
(
self
):
def
test_add_to_sfg
(
self
):
add1
=
Addition
()
add1
=
Addition
()
...
...
This diff is collapsed.
Click to expand it.
test/test_sfg.py
+
22
−
0
View file @
4766320f
...
@@ -24,6 +24,7 @@ from b_asic.core_operations import (
...
@@ -24,6 +24,7 @@ from b_asic.core_operations import (
SymmetricTwoportAdaptor
,
SymmetricTwoportAdaptor
,
)
)
from
b_asic.save_load_structure
import
python_to_sfg
,
sfg_to_python
from
b_asic.save_load_structure
import
python_to_sfg
,
sfg_to_python
from
b_asic.special_operations
import
Delay
class
TestInit
:
class
TestInit
:
...
@@ -1563,6 +1564,27 @@ class TestSFGErrors:
...
@@ -1563,6 +1564,27 @@ class TestSFGErrors:
sfg
.
inputs_required_for_output
(
1
)
sfg
.
inputs_required_for_output
(
1
)
class
TestInputDuplicationBug
:
def
test_input_is_not_duplicated_in_operation_list
(
self
):
# Inputs:
in1
=
Input
(
name
=
"
in1
"
)
out1
=
Output
(
name
=
"
out1
"
)
# Operations:
t1
=
Delay
(
initial_value
=
0
,
name
=
""
)
t1
.
inputs
[
0
].
connect
(
in1
)
add1
=
t1
+
in1
out1
.
inputs
[
0
].
connect
(
add1
)
twotapfir
=
SFG
(
inputs
=
[
in1
],
outputs
=
[
out1
],
name
=
'
twotapfir
'
)
assert
(
len
([
op
for
op
in
twotapfir
.
operations
if
isinstance
(
op
,
Input
)])
==
1
)
class
TestCriticalPath
:
class
TestCriticalPath
:
def
test_single_accumulator
(
self
,
sfg_simple_accumulator
:
SFG
):
def
test_single_accumulator
(
self
,
sfg_simple_accumulator
:
SFG
):
sfg_simple_accumulator
.
set_latency_of_type
(
Addition
.
type_name
(),
5
)
sfg_simple_accumulator
.
set_latency_of_type
(
Addition
.
type_name
(),
5
)
...
...
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