Skip to content
Snippets Groups Projects
Commit c50a7d1f authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fixed attributes not properly cloned in GenericOperator copy constructor

parent 6acdc4aa
No related branches found
No related tags found
2 merge requests!333[Fix] Attribute snake case,!322Fix Generic and Meta op copy constructor issues
...@@ -45,7 +45,7 @@ Aidge::GenericOperator_Op::GenericOperator_Op(const std::string& type, ...@@ -45,7 +45,7 @@ Aidge::GenericOperator_Op::GenericOperator_Op(const std::string& type,
Aidge::GenericOperator_Op::GenericOperator_Op(const Aidge::GenericOperator_Op& op) Aidge::GenericOperator_Op::GenericOperator_Op(const Aidge::GenericOperator_Op& op)
: OperatorTensor(op), : OperatorTensor(op),
mForwardDims(op.mForwardDims), mForwardDims(op.mForwardDims),
mAttributes(op.attributes() ? op.mAttributes : std::make_shared<DynamicAttributes>()) mAttributes(std::make_shared<DynamicAttributes>(*op.mAttributes))
{ {
mImpl = std::make_shared<OperatorImpl>(*this, op.backend()); mImpl = std::make_shared<OperatorImpl>(*this, op.backend());
} }
......
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