Skip to content
Snippets Groups Projects
Commit dca8af0e authored by Kevin's avatar Kevin
Browse files

Need to merge with 80

parent 676a6e96
No related branches found
No related tags found
1 merge request!44Resolve "Operation Replacement in a SFG"
......@@ -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.
......
......@@ -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()
......
......@@ -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
......@@ -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
neg1 = ConstantMultiplication(-1, in1)
add1 = neg1 + 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, neg1} 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()
constmul1 = ConstantMultiplication()
with pytest.raises(AssertionError):
sfg.replace_operations([sfg.inputs(0), sfg.inputs(1)], [sfg.outputs(0)], mul1)
sfg.replace_operations(['add1'], constmul1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment