elementwise_add_op.h 4.2 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
G
gongweibao 已提交
2

L
Luo Tao 已提交
3 4 5
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
G
gongweibao 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
G
gongweibao 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
14

F
fengjiayi 已提交
15 16
#pragma once

17 18
#include <algorithm>
#include <utility>
W
Wu Yi 已提交
19
#include "paddle/fluid/operators/elementwise/elementwise_op.h"
20

21 22
// only can include the headers in paddle/pten/include dirs
#include "paddle/pten/kernels/elementwise_grad_kernel.h"
23
#include "paddle/pten/kernels/math_kernel.h"
24

G
gongweibao 已提交
25 26 27
namespace paddle {
namespace operators {

Q
QI JUN 已提交
28
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
29
class ElementwiseAddKernel : public framework::OpKernel<T> {
G
gongweibao 已提交
30
 public:
C
chengduo 已提交
31 32 33 34
  void Compute(const framework::ExecutionContext &ctx) const override {
    auto *x = ctx.Input<framework::LoDTensor>("X");
    auto *y = ctx.Input<framework::LoDTensor>("Y");
    auto *z = ctx.Output<framework::LoDTensor>("Out");
C
chengduoZH 已提交
35
    z->mutable_data<T>(ctx.GetPlace());
36 37 38

    auto &dev_ctx = ctx.device_context<DeviceContext>();
    int axis = ctx.Attr<int>("axis");
39
    pten::AddRawKernel<T>(
W
Wilber 已提交
40 41
        static_cast<const typename framework::ConvertToPtenContext<
            DeviceContext>::TYPE &>(dev_ctx),
42
        *x, *y, axis, z);
G
gongweibao 已提交
43 44 45
  }
};

Q
QI JUN 已提交
46
template <typename DeviceContext, typename T>
47
class ElementwiseAddGradKernel : public ElemwiseGradKernel<T> {
G
gongweibao 已提交
48
 public:
C
chengduo 已提交
49
  void Compute(const framework::ExecutionContext &ctx) const override {
C
chengduoZH 已提交
50
    using Tensor = framework::Tensor;
51 52
    auto *x = ctx.Input<Tensor>("X");
    auto *y = ctx.Input<Tensor>("Y");
C
chengduo 已提交
53 54 55
    auto *dout = ctx.Input<Tensor>(framework::GradVarName("Out"));
    auto *dx = ctx.Output<Tensor>(framework::GradVarName("X"));
    auto *dy = ctx.Output<Tensor>(framework::GradVarName("Y"));
56 57 58 59 60 61
    const auto &dev_ctx = ctx.template device_context<DeviceContext>();
    int axis = ctx.Attr<int>("axis");
    pten::AddGradKernel<T>(
        static_cast<const typename framework::ConvertToPtenContext<
            DeviceContext>::TYPE &>(dev_ctx),
        *x, *y, *dout, axis, dx, dy);
G
gongweibao 已提交
62 63 64
  }
};

65 66 67 68 69 70 71 72 73 74 75 76
template <typename DeviceContext, typename T>
class ElementwiseAddDoubleGradKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext &ctx) const override {
    using Tensor = framework::Tensor;

    auto *y = ctx.Input<Tensor>("Y");
    auto *dout = ctx.Input<Tensor>("DOut");
    auto *ddx = ctx.Input<Tensor>("DDX");
    auto *ddy = ctx.Input<Tensor>("DDY");

    auto *ddout = ctx.Output<Tensor>("DDOut");
77 78 79 80 81 82 83 84 85
    const auto &dev_ctx = ctx.template device_context<DeviceContext>();
    int axis = ctx.Attr<int>("axis");
    paddle::optional<const pten::DenseTensor &> ddx_optional = paddle::none;
    paddle::optional<const pten::DenseTensor &> ddy_optional = paddle::none;
    if (ddx != nullptr) {
      ddx_optional = *ddx;
    }
    if (ddy != nullptr) {
      ddy_optional = *ddy;
86
    }
87 88 89 90
    pten::AddDoubleGradKernel<T>(
        static_cast<const typename framework::ConvertToPtenContext<
            DeviceContext>::TYPE &>(dev_ctx),
        *y, ddx_optional, ddy_optional, *dout, axis, ddout);
91 92 93
  }
};

94 95 96 97 98 99 100 101 102 103
template <typename DeviceContext, typename T>
class ElementwiseAddTripleGradKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext &ctx) const override {
    using Tensor = framework::Tensor;
    auto *ddx = ctx.Input<Tensor>("DDX");
    auto *ddy = ctx.Input<Tensor>("DDY");
    auto *d_ddout = ctx.Input<Tensor>("D_DDOut");
    auto *d_ddx = ctx.Output<Tensor>("D_DDX");
    auto *d_ddy = ctx.Output<Tensor>("D_DDY");
104 105 106 107 108 109 110

    const auto &dev_ctx = ctx.template device_context<DeviceContext>();
    int axis = ctx.Attr<int>("axis");
    pten::AddTripleGradKernel<T>(
        static_cast<const typename framework::ConvertToPtenContext<
            DeviceContext>::TYPE &>(dev_ctx),
        *ddx, *ddy, *d_ddout, axis, d_ddx, d_ddy);
111 112 113
  }
};

G
gongweibao 已提交
114 115
}  // namespace operators
}  // namespace paddle