Skip to content
Snippets Groups Projects
Commit 89b18c45 authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Fix compilation issue with Move keyword.

parent e7ce72cd
No related branches found
No related tags found
2 merge requests!105version 0.2.0,!85Initial working python registrar.
Pipeline #40334 passed
......@@ -39,11 +39,7 @@ public:
Move_Op(const Move_Op& op)
: OperatorTensor(op)
{
if (op.mImpl){
SET_IMPL_MACRO(Move_Op, *this, op.mOutputs[0]->getImpl()->backend());
}else{
mImpl = nullptr;
}
mImpl = op.mImpl ? Registrar<Move_Op>::create({mInputs[0]->getImpl()->backend(), mOutputs[0]->getImpl()->backend()})(*this) : nullptr;
}
/**
......
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