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
9eecfcc0
Commit
9eecfcc0
authored
4 years ago
by
angloth
Browse files
Options
Downloads
Patches
Plain Diff
Remove debug printing from sfg.py
parent
b128b5bb
No related branches found
No related tags found
5 merge requests
!31
Resolve "Specify internal input/output dependencies of an Operation"
,
!25
Resolve "System tests iteration 1"
,
!24
Resolve "System tests iteration 1"
,
!23
Resolve "Simulate SFG"
,
!21
Resolve "Print SFG"
Pipeline
#12255
failed
4 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/signal_flow_graph.py
+0
-10
0 additions, 10 deletions
b_asic/signal_flow_graph.py
with
0 additions
and
10 deletions
b_asic/signal_flow_graph.py
+
0
−
10
View file @
9eecfcc0
...
...
@@ -140,7 +140,6 @@ class SFG(AbstractOperation):
raise
ValueError
(
f
"
Input signal #
{
input_index
}
is missing destination in SFG
"
)
elif
sig
.
destination
.
operation
not
in
self
.
_added_components_mapping
:
print
(
"
MEME
"
)
self
.
_copy_structure_from_operation_dfs
(
sig
.
destination
.
operation
)
...
...
@@ -230,7 +229,6 @@ class SFG(AbstractOperation):
new_op
=
None
if
original_op
not
in
self
.
_added_components_mapping
:
new_op
=
self
.
_add_component_copy_unconnected
(
original_op
)
print
(
"
NEW_OP from traversal
"
)
self
.
_components_in_dfs_order
.
append
(
new_op
)
else
:
new_op
=
self
.
_added_components_mapping
[
original_op
]
...
...
@@ -265,8 +263,6 @@ class SFG(AbstractOperation):
new_signal
.
set_destination
(
new_op
.
input
(
original_input_port
.
index
))
print
(
"
new sig:
"
,
original_signal
.
name
,
"
from input, curr:
"
,
new_op
.
name
)
self
.
_components_in_dfs_order
.
append
(
new_signal
)
original_connected_op
=
original_signal
.
source
.
operation
...
...
@@ -283,8 +279,6 @@ class SFG(AbstractOperation):
new_signal
.
set_source
(
new_connected_op
.
output
(
original_signal
.
source
.
index
))
print
(
"
new op:
"
,
original_connected_op
.
name
,
"
from input, curr:
"
,
new_op
.
name
)
self
.
_components_in_dfs_order
.
append
(
new_connected_op
)
...
...
@@ -318,8 +312,6 @@ class SFG(AbstractOperation):
new_signal
.
set_source
(
new_op
.
output
(
original_output_port
.
index
))
print
(
"
New sig:
"
,
original_signal
.
name
,
"
from output, curr:
"
,
new_op
.
name
)
self
.
_components_in_dfs_order
.
append
(
new_signal
)
original_connected_op
=
original_signal
.
destination
.
operation
...
...
@@ -337,8 +329,6 @@ class SFG(AbstractOperation):
new_signal
.
set_destination
(
new_connected_op
.
input
(
original_signal
.
destination
.
index
))
print
(
"
New op:
"
,
original_connected_op
.
name
,
"
from output, curr:
"
,
new_op
.
name
)
self
.
_components_in_dfs_order
.
append
(
new_connected_op
)
...
...
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