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
3f32dcde
Commit
3f32dcde
authored
1 year ago
by
Hugo Winbladh
Committed by
Oscar Gustafsson
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Add a sink operation to avoid dangling nodes
parent
ce58bd0e
No related branches found
Branches containing commit
No related tags found
1 merge request
!425
Add a sink operation to avoid dangling nodes
Pipeline
#102906
passed
1 year ago
Stage: test
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
b_asic/core_operations.py
+42
-1
42 additions, 1 deletion
b_asic/core_operations.py
test/test_core_operations.py
+15
-0
15 additions, 0 deletions
test/test_core_operations.py
with
57 additions
and
1 deletion
b_asic/core_operations.py
+
42
−
1
View file @
3f32dcde
...
@@ -73,7 +73,6 @@ class Constant(AbstractOperation):
...
@@ -73,7 +73,6 @@ class Constant(AbstractOperation):
def
__str__
(
self
)
->
str
:
def
__str__
(
self
)
->
str
:
return
f
"
{
self
.
value
}
"
return
f
"
{
self
.
value
}
"
class
Addition
(
AbstractOperation
):
class
Addition
(
AbstractOperation
):
"""
"""
Binary addition operation.
Binary addition operation.
...
@@ -1263,3 +1262,45 @@ class Shift(AbstractOperation):
...
@@ -1263,3 +1262,45 @@ class Shift(AbstractOperation):
if
not
isinstance
(
value
,
int
):
if
not
isinstance
(
value
,
int
):
raise
TypeError
(
"
value must be an int
"
)
raise
TypeError
(
"
value must be an int
"
)
self
.
set_param
(
"
value
"
,
value
)
self
.
set_param
(
"
value
"
,
value
)
class
Sink
(
AbstractOperation
):
r
"""
Sink operation.
Used for ignoring the output from another operation to avoid dangling output nodes.
Parameters
==========
name : Name, optional
Operation name.
"""
_execution_time
=
0
is_linear
=
True
def
__init__
(
self
,
name
:
Name
=
""
):
"""
Construct a Sink operation.
"""
super
().
__init__
(
input_count
=
1
,
output_count
=
0
,
name
=
name
,
latency_offsets
=
{
"
in0
"
:
0
},
)
@classmethod
def
type_name
(
cls
)
->
TypeName
:
return
TypeName
(
"
sink
"
)
def
evaluate
(
self
):
raise
NotImplementedError
@property
def
latency
(
self
)
->
int
:
return
self
.
latency_offsets
[
"
in0
"
]
def
__repr__
(
self
)
->
str
:
return
"
Sink()
"
def
__str__
(
self
)
->
str
:
return
"
sink
"
This diff is collapsed.
Click to expand it.
test/test_core_operations.py
+
15
−
0
View file @
3f32dcde
...
@@ -20,6 +20,8 @@ from b_asic import (
...
@@ -20,6 +20,8 @@ from b_asic import (
SquareRoot
,
SquareRoot
,
Subtraction
,
Subtraction
,
SymmetricTwoportAdaptor
,
SymmetricTwoportAdaptor
,
Sink
,
SFG
,
)
)
...
@@ -404,3 +406,16 @@ class TestDepends:
...
@@ -404,3 +406,16 @@ class TestDepends:
bfly1
=
Butterfly
()
bfly1
=
Butterfly
()
assert
set
(
bfly1
.
inputs_required_for_output
(
0
))
==
{
0
,
1
}
assert
set
(
bfly1
.
inputs_required_for_output
(
0
))
==
{
0
,
1
}
assert
set
(
bfly1
.
inputs_required_for_output
(
1
))
==
{
0
,
1
}
assert
set
(
bfly1
.
inputs_required_for_output
(
1
))
==
{
0
,
1
}
class
TestSink
:
def
test_create_sfg_with_sink
(
self
):
bfly
=
Butterfly
()
sfg
=
bfly
.
to_sfg
()
s
=
Sink
()
sfg1
=
sfg
.
replace_operation
(
s
,
"
out0
"
)
sfg2
=
SFG
(
sfg1
.
input_operations
,
sfg1
.
output_operations
[
1
:])
assert
sfg2
.
output_count
==
1
assert
sfg2
.
input_count
==
2
assert
sfg
.
evaluate_output
(
1
,
[
0
,
1
])
==
sfg2
.
evaluate_output
(
0
,
[
0
,
1
])
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