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
98e3b5c9
Commit
98e3b5c9
authored
2 years ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Refactor source/destination code of signal and operation
parent
a23a48c3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!133
Refactor source/destination code of signal and operation
Pipeline
#88545
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/operation.py
+29
-1
29 additions, 1 deletion
b_asic/operation.py
b_asic/signal.py
+34
-35
34 additions, 35 deletions
b_asic/signal.py
test/test_signal.py
+8
-8
8 additions, 8 deletions
test/test_signal.py
with
71 additions
and
44 deletions
b_asic/operation.py
+
29
−
1
View file @
98e3b5c9
...
...
@@ -389,6 +389,24 @@ class Operation(GraphComponent, SignalSourceProvider):
"""
raise
NotImplementedError
@property
@abstractmethod
def
source
(
self
)
->
OutputPort
:
"""
Return the OutputPort if there is only one output port.
If not, raise a TypeError.
"""
raise
NotImplementedError
@property
@abstractmethod
def
destination
(
self
)
->
InputPort
:
"""
Return the InputPort if there is only one input port.
If not, raise a TypeError.
"""
raise
NotImplementedError
@abstractmethod
def
_increase_time_resolution
(
self
,
factor
:
int
)
->
None
:
raise
NotImplementedError
...
...
@@ -848,10 +866,20 @@ class AbstractOperation(Operation, AbstractGraphComponent):
diff
=
"
more
"
if
self
.
output_count
>
1
else
"
less
"
raise
TypeError
(
f
"
{
self
.
__class__
.
__name__
}
cannot be used as an input source
"
f
"
because it has
{
diff
}
than
1
output
"
f
"
because it has
{
diff
}
than
one
output
"
)
return
self
.
output
(
0
)
@property
def
destination
(
self
)
->
OutputPort
:
if
self
.
input_count
!=
1
:
diff
=
"
more
"
if
self
.
input_count
>
1
else
"
less
"
raise
TypeError
(
f
"
{
self
.
__class__
.
__name__
}
cannot be used as an output
"
f
"
destination because it has
{
diff
}
than one input
"
)
return
self
.
input
(
0
)
def
truncate_input
(
self
,
index
:
int
,
value
:
Number
,
bits
:
int
)
->
Number
:
return
int
(
value
)
&
((
2
**
bits
)
-
1
)
...
...
This diff is collapsed.
Click to expand it.
b_asic/signal.py
+
34
−
35
View file @
98e3b5c9
...
...
@@ -13,8 +13,8 @@ from b_asic.graph_component import (
)
if
TYPE_CHECKING
:
from
b_asic.port
import
InputPort
,
OutputPort
from
b_asic.operation
import
Operation
from
b_asic.port
import
InputPort
,
OutputPort
class
Signal
(
AbstractGraphComponent
):
...
...
@@ -24,15 +24,19 @@ class Signal(AbstractGraphComponent):
Parameters
==========
source : OutputPort or Operation, optional
OutputPort or Operation to connect as source to the signal.
destination : InputPort or Operation, optional
InputPort or Operation to connect as destination to the signal.
source : OutputPort
, Signal,
or Operation, optional
OutputPort
, Signal,
or Operation to connect as source to the signal.
destination : InputPort
, Signal,
or Operation, optional
InputPort
, Signal,
or Operation to connect as destination to the signal.
bits : int, optional
The word length of the signal.
name : Name, default:
""
The signal name.
.. note:: If a Signal is provided as *source* or *destination*, the
connected port is used. Hence, if the argument signal is later
changed, it will not affect the current Signal.
See also
========
set_source, set_destination
...
...
@@ -43,8 +47,10 @@ class Signal(AbstractGraphComponent):
def
__init__
(
self
,
source
:
Optional
[
Union
[
"
OutputPort
"
,
"
Operation
"
]]
=
None
,
destination
:
Optional
[
Union
[
"
InputPort
"
,
"
Operation
"
]]
=
None
,
source
:
Optional
[
Union
[
"
OutputPort
"
,
"
Signal
"
,
"
Operation
"
]]
=
None
,
destination
:
Optional
[
Union
[
"
InputPort
"
,
"
Signal
"
,
"
Operation
"
]
]
=
None
,
bits
:
Optional
[
int
]
=
None
,
name
:
Name
=
Name
(
""
),
):
...
...
@@ -80,7 +86,9 @@ class Signal(AbstractGraphComponent):
"""
The destination InputPort of the signal.
"""
return
self
.
_destination
def
set_source
(
self
,
source
:
Union
[
"
OutputPort
"
,
"
Operation
"
])
->
None
:
def
set_source
(
self
,
source
:
Union
[
"
OutputPort
"
,
"
Signal
"
,
"
Operation
"
]
)
->
None
:
"""
Disconnect the previous source OutputPort of the signal and
connect to the entered source OutputPort. Also connect the entered
...
...
@@ -89,21 +97,16 @@ class Signal(AbstractGraphComponent):
Parameters
==========
source : OutputPort or Operation, optional
OutputPort or Operation to connect as source to the signal. If
Operation, it must have a single output, otherwise a TypeError is
source : OutputPort, Signal, or Operation, optional
OutputPort, Signal, or Operation to connect as source to the signal.
If Signal, it will connect to the source of the signal, so later on
changing the source of the argument Signal will not affect this Signal.
If Operation, it must have a single output, otherwise a TypeError is
raised. That output is used to extract the OutputPort.
"""
from
b_asic.operation
import
Operation
if
isinstance
(
source
,
Operation
):
if
source
.
output_count
!=
1
:
raise
TypeError
(
"
Can only connect operations with a single output.
"
f
"
{
source
.
type_name
()
}
has
{
source
.
output_count
}
outputs.
"
"
Use the output port directly instead.
"
)
source
=
source
.
output
(
0
)
if
hasattr
(
source
,
"
source
"
):
# Signal or Operation
source
=
source
.
source
if
source
is
not
self
.
_source
:
self
.
remove_source
()
...
...
@@ -111,7 +114,9 @@ class Signal(AbstractGraphComponent):
if
self
not
in
source
.
signals
:
source
.
add_signal
(
self
)
def
set_destination
(
self
,
destination
:
"
InputPort
"
)
->
None
:
def
set_destination
(
self
,
destination
:
Union
[
"
InputPort
"
,
"
Signal
"
,
"
Operation
"
]
)
->
None
:
"""
Disconnect the previous destination InputPort of the signal and
connect to the entered destination InputPort. Also connect the entered
...
...
@@ -120,23 +125,17 @@ class Signal(AbstractGraphComponent):
Parameters
==========
destination : InputPort or Operation
InputPort or Operation to connect as destination to the signal.
destination : InputPort, Signal, or Operation
InputPort, Signal, or Operation to connect as destination to the signal.
If Signal, it will connect to the destination of the signal, so later on
changing the destination of the argument Signal will not affect this Signal.
If Operation, it must have a single input, otherwise a TypeError
is raised.
"""
from
b_asic.operation
import
Operation
if
isinstance
(
destination
,
Operation
):
if
destination
.
input_count
!=
1
:
raise
TypeError
(
"
Can only connect operations with a single input.
"
f
"
{
destination
.
type_name
()
}
has
"
f
"
{
destination
.
input_count
}
outputs. Use the input port
"
"
directly instead.
"
)
destination
=
destination
.
input
(
0
)
if
hasattr
(
destination
,
"
destination
"
):
# Signal or Operation
destination
=
destination
.
destination
if
destination
is
not
self
.
_destination
:
self
.
remove_destination
()
...
...
This diff is collapsed.
Click to expand it.
test/test_signal.py
+
8
−
8
View file @
98e3b5c9
...
...
@@ -111,8 +111,8 @@ def test_signal_errors():
with
pytest
.
raises
(
TypeError
,
match
=
(
"
Can only
c
o
nn
ect operations with a single input. add
has
2
"
"
out
put
s.
"
"
Addition
c
a
nn
ot be used as an output destination because it
has
"
"
more than one in
put
"
),
):
_
=
Signal
(
cm1
,
add1
)
...
...
@@ -121,8 +121,8 @@ def test_signal_errors():
with
pytest
.
raises
(
TypeError
,
match
=
(
"
Can on
ly c
o
nn
ect operations with a single output. bfly
has
2
"
"
output
s.
"
"
Butterf
ly c
a
nn
ot be used as an input source because it
has
more
"
"
than one
output
"
),
):
_
=
Signal
(
bf
,
cm1
)
...
...
@@ -132,8 +132,8 @@ def test_signal_errors():
with
pytest
.
raises
(
TypeError
,
match
=
(
"
Can only
c
o
nn
ect operations with a single input. add
has
2
"
"
out
put
s.
"
"
Addition
c
a
nn
ot be used as an output destination because it
has
"
"
more than one in
put
"
),
):
signal
.
set_destination
(
add1
)
...
...
@@ -141,8 +141,8 @@ def test_signal_errors():
with
pytest
.
raises
(
TypeError
,
match
=
(
"
Can on
ly c
o
nn
ect operations with a single output. bfly
has
2
"
"
output
s.
"
"
Butterf
ly c
a
nn
ot be used as an input source because it
has
more
"
"
than one
output
"
),
):
signal
.
set_source
(
bf
)
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