* @brief Copy-constructor. Copy the operator attributes and its output tensor(s), but not its input tensors (the new operator has no input associated).
* @param op Operator to copy.
*/
ILayerNorm_Op(constILayerNorm_Op&op)
:OperatorTensor(op)
{
if(op.mImpl){
SET_IMPL_MACRO(ILayerNorm_Op,*this,op.backend());
}else{
mImpl=nullptr;
}
}
/**
* @brief Clone the operator using its copy-constructor.