Skip to content
Snippets Groups Projects
Commit fb295801 authored by Cyril Moineau's avatar Cyril Moineau Committed by Maxence Naud
Browse files

Fix compilation issue with Move keyword.

parent d3eb5091
No related branches found
No related tags found
2 merge requests!105version 0.2.0,!85Initial working python registrar.
......@@ -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