|
|
|
@ -13,10 +13,48 @@ See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License. */
|
|
|
|
|
|
|
|
|
|
#include "paddle/fluid/operators/elementwise/elementwise_add_op.h"
|
|
|
|
|
#include <memory>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include "paddle/fluid/operators/elementwise/elementwise_op.h"
|
|
|
|
|
namespace ops = paddle::operators;
|
|
|
|
|
|
|
|
|
|
namespace paddle {
|
|
|
|
|
namespace operators {
|
|
|
|
|
|
|
|
|
|
class ElementwiseAddDoubleGradDescMaker
|
|
|
|
|
: public framework::SingleGradOpDescMaker {
|
|
|
|
|
public:
|
|
|
|
|
using framework::SingleGradOpDescMaker::SingleGradOpDescMaker;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
std::unique_ptr<framework::OpDesc> Apply() const override {
|
|
|
|
|
std::unique_ptr<framework::OpDesc> op(new framework::OpDesc());
|
|
|
|
|
op->SetType("elementwise_add_grad_grad");
|
|
|
|
|
op->SetInput("Y", Input("Y"));
|
|
|
|
|
op->SetInput("DOut", Input(framework::GradVarName("Out")));
|
|
|
|
|
op->SetInput("DDX", OutputGrad(framework::GradVarName("X")));
|
|
|
|
|
op->SetInput("DDY", OutputGrad(framework::GradVarName("Y")));
|
|
|
|
|
|
|
|
|
|
op->SetAttrMap(Attrs());
|
|
|
|
|
|
|
|
|
|
op->SetOutput("DDOut", InputGrad(framework::GradVarName("Out")));
|
|
|
|
|
return op;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace operators
|
|
|
|
|
} // namespace paddle
|
|
|
|
|
|
|
|
|
|
REGISTER_ELEMWISE_GRAD_MAKER(elementwise_add, Add);
|
|
|
|
|
REGISTER_ELEMWISE_EXPLICIT_OP(elementwise_add, "Add", "Out = X + Y");
|
|
|
|
|
REGISTER_ELEMWISE_EXPLICIT_OP_WITHOUT_GRAD(elementwise_add, "Add",
|
|
|
|
|
"Out = X + Y");
|
|
|
|
|
|
|
|
|
|
namespace ops = paddle::operators;
|
|
|
|
|
REGISTER_OPERATOR(elementwise_add_grad, ops::ElementwiseOpExplicitGrad,
|
|
|
|
|
ops::ElementwiseGradOpInplace,
|
|
|
|
|
ops::ElementwiseGradNoBufVarsInference,
|
|
|
|
|
ops::ElementwiseAddDoubleGradDescMaker);
|
|
|
|
|
REGISTER_OPERATOR(elementwise_add_grad_grad,
|
|
|
|
|
ops::ElementwiseOpDoubleGradWithoutDXDY);
|
|
|
|
|
|
|
|
|
|
REGISTER_OP_CPU_KERNEL(
|
|
|
|
|
elementwise_add,
|
|
|
|
@ -30,3 +68,13 @@ REGISTER_OP_CPU_KERNEL(
|
|
|
|
|
ops::ElementwiseAddGradKernel<paddle::platform::CPUDeviceContext, double>,
|
|
|
|
|
ops::ElementwiseAddGradKernel<paddle::platform::CPUDeviceContext, int>,
|
|
|
|
|
ops::ElementwiseAddGradKernel<paddle::platform::CPUDeviceContext, int64_t>);
|
|
|
|
|
REGISTER_OP_CPU_KERNEL(
|
|
|
|
|
elementwise_add_grad_grad,
|
|
|
|
|
ops::ElementwiseAddDoubleGradKernel<paddle::platform::CPUDeviceContext,
|
|
|
|
|
float>,
|
|
|
|
|
ops::ElementwiseAddDoubleGradKernel<paddle::platform::CPUDeviceContext,
|
|
|
|
|
double>,
|
|
|
|
|
ops::ElementwiseAddDoubleGradKernel<paddle::platform::CPUDeviceContext,
|
|
|
|
|
int>,
|
|
|
|
|
ops::ElementwiseAddDoubleGradKernel<paddle::platform::CPUDeviceContext,
|
|
|
|
|
int64_t>);
|
|
|
|
|