/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include #include "paddle/fluid/operators/elementwise/elementwise_op.h" #include "paddle/fluid/prim/api/composite_backward/composite_backward_api.h" #include "paddle/fluid/prim/utils/static/composite_grad_desc_maker.h" #include "paddle/fluid/prim/utils/static/desc_tensor.h" namespace paddle { namespace framework { class OpDesc; } // namespace framework } // namespace paddle namespace paddle { namespace operators { class ElementwiseAddOpMaker : public ElementwiseOpMaker { protected: std::string GetName() const override { return "Add"; } std::string GetEquation() const override { return "Out = X + Y"; } void AddInputX() override { AddInput( "X", "(Variable), Tensor or phi::DenseTensor of any dimensions. Its dtype " "should be int32, int64, float32, float64."); } void AddInputY() override { AddInput( "Y", "(Variable), Tensor or phi::DenseTensor of any dimensions. Its dtype " "should be int32, int64, float32, float64."); } std::string GetOpFunctionality() const override { return "Add two tensors element-wise"; } }; class ElementwiseAddCompositeGradOpMaker : public prim::CompositeGradOpMakerBase { using prim::CompositeGradOpMakerBase::CompositeGradOpMakerBase; public: void Apply() override { paddle::Tensor x = this->GetSingleForwardInput("X"); paddle::Tensor y = this->GetSingleForwardInput("Y"); paddle::Tensor out_grad = this->GetSingleOutputGrad("Out"); paddle::Tensor dx = this->GetSingleInputGrad("X"); auto* dx_ptr = this->GetOutputPtr(&dx); std::string dx_name = this->GetOutputName(dx); paddle::Tensor dy = this->GetSingleInputGrad("Y"); auto* dy_ptr = this->GetOutputPtr(&dy); std::string dy_name = this->GetOutputName(dy); int axis = static_cast(this->Attr("axis")); PADDLE_ENFORCE_EQ( axis, -1, phi::errors::InvalidArgument( "We only support axis = -1 in composite add_grad but we got: ", axis)); VLOG(6) << "Runing add_grad composite func"; prim::add_grad(x, y, out_grad, axis, dx_ptr, dy_ptr); this->RecoverOutputName(dx, dx_name); this->RecoverOutputName(dy, dy_name); } }; template class ElementwiseAddDoubleGradMaker : public framework::SingleGradOpMaker { public: using framework::SingleGradOpMaker::SingleGradOpMaker; protected: void Apply(GradOpPtr op) const override { op->SetType("elementwise_add_grad_grad"); op->SetInput("Y", this->Input("Y")); op->SetInput("DOut", this->Input(framework::GradVarName("Out"))); op->SetInput("DDX", this->OutputGrad(framework::GradVarName("X"))); op->SetInput("DDY", this->OutputGrad(framework::GradVarName("Y"))); op->SetAttrMap(this->Attrs()); op->SetOutput("DDOut", this->InputGrad(framework::GradVarName("Out"))); } }; class ElementwiseAddCompositeDoubleGradOpMaker : public prim::CompositeGradOpMakerBase { using prim::CompositeGradOpMakerBase::CompositeGradOpMakerBase; public: void Apply() override { // get input paddle::Tensor y = this->GetSingleForwardInput("Y"); paddle::Tensor out_grad = this->GetSingleOutputGrad("Out"); paddle::optional ddx = this->GetOptionalSingleOutputGrad(framework::GradVarName("X")); paddle::optional ddy = this->GetOptionalSingleOutputGrad(framework::GradVarName("Y")); // get output paddle::Tensor grad_out_grad_t = this->GetSingleInputGrad(framework::GradVarName("Out")); // get attr int axis = static_cast(this->Attr("axis")); PADDLE_ENFORCE_EQ( axis, -1, phi::errors::InvalidArgument("We only support axis = -1 in composite " "add_doubel_grad but we got: ", axis)); paddle::Tensor* grad_out_grad = this->GetOutputPtr(&grad_out_grad_t); std::string grad_out_grad_name = this->GetOutputName(grad_out_grad_t); VLOG(6) << "Runing add_double_grad composite func"; prim::add_double_grad( y, out_grad, ddx, ddy, axis, grad_out_grad); this->RecoverOutputName(grad_out_grad_t, grad_out_grad_name); } }; template class ElementwiseAddTripleGradMaker : public framework::SingleGradOpMaker { public: using framework::SingleGradOpMaker::SingleGradOpMaker; protected: void Apply(GradOpPtr op) const override { op->SetType("elementwise_add_triple_grad"); op->SetInput("DDX", this->Input("DDX")); op->SetInput("DDY", this->Input("DDY")); op->SetInput("D_DDOut", this->OutputGrad("DDOut")); op->SetAttrMap(this->Attrs()); op->SetOutput("D_DDX", this->InputGrad("DDX")); op->SetOutput("D_DDY", this->InputGrad("DDY")); } }; } // namespace operators } // namespace paddle REGISTER_ELEMWISE_GRAD_MAKER(elementwise_add, Add); REGISTER_OPERATOR(elementwise_add, ::paddle::operators::ElementwiseOp, ::paddle::operators::ElementwiseAddOpMaker, ::paddle::operators::ElementwiseOpInferVarType, elementwise_addGradMaker<::paddle::framework::OpDesc>, elementwise_addGradMaker<::paddle::imperative::OpBase>, ::paddle::operators::ElementwiseAddCompositeGradOpMaker, ::paddle::operators::ElementwiseOpInplaceInferer); namespace ops = paddle::operators; REGISTER_OPERATOR( elementwise_add_grad, ops::ElementwiseOpGrad, ops::ElementwiseGradOpInplaceInferer, ops::ElementwiseGradNoBufVarsInferer, ops::ElementwiseAddDoubleGradMaker, ops::ElementwiseAddDoubleGradMaker, ops::ElementwiseAddCompositeDoubleGradOpMaker); REGISTER_OPERATOR( elementwise_add_grad_grad, ops::ElementwiseOpDoubleGradWithoutDXDY, ops::ElementwiseDoubleGradOpInplaceInferer, ops::ElementwiseDoubleGradNoBufVarsInferer, ops::ElementwiseAddTripleGradMaker, ops::ElementwiseAddTripleGradMaker); REGISTER_OPERATOR(elementwise_add_triple_grad, ops::ElementwiseOpTripleGrad, ops::ElementwiseTripleGradOpInplaceInferer, ops::ElementwiseTripleGradNoBufVarsInferer); // A specialization elementwise_add operator, used in gradient accumulation with // inplace addto. REGISTER_OPERATOR( grad_add, paddle::operators::ElementwiseOp, paddle::operators::ElementwiseAddOpMaker, paddle::framework::EmptyGradOpMaker, paddle::framework::EmptyGradOpMaker); REGISTER_OP_VERSION(elementwise_add) .AddCheckpoint( R"ROC(Register elementwise_add for adding the attribute of Scale_y)ROC", paddle::framework::compatible::OpVersionDesc().NewAttr( "Scale_y", "In order to support the function of scaling the input Y when " "using the operator of elementwise_add.", 1.0f));