layer_norm_op.h 7.9 KB
Newer Older
C
chengduoZH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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. */

#pragma once
#include "paddle/framework/eigen.h"
#include "paddle/framework/op_registry.h"

C
chengduoZH 已提交
19 20 21
#include "paddle/operators/elementwise_op_function.h"
#include "paddle/operators/math/math_function.h"

C
chengduoZH 已提交
22 23 24
namespace paddle {
namespace operators {

C
chengduoZH 已提交
25 26 27 28 29 30 31 32 33
template <typename T>
struct SubAndSquareFunctor {
  inline HOSTDEVICE T operator()(T a, T b) const { return (a - b) * (a - b); }
};

template <typename T>
struct DivAndSqrtFunctor {
  explicit DivAndSqrtFunctor(T epsilon) { epsilon_ = epsilon; }
  inline HOSTDEVICE T operator()(T a, T b) const {
C
chengduoZH 已提交
34
    return a / (sqrt(b + epsilon_));
C
chengduoZH 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
  }

 private:
  T epsilon_;
};

template <typename T>
struct MulFunctor {
  inline HOSTDEVICE T operator()(T a, T b) const { return a * b; }
};

template <typename T>
struct AddFunctor {
  inline HOSTDEVICE T operator()(T a, T b) const { return a + b; }
};

template <typename T>
struct SubFunctor {
  inline HOSTDEVICE T operator()(T a, T b) const { return a - b; }
};

template <typename T>
struct MulInvVarFunctor {
  inline HOSTDEVICE T operator()(T a, T b) const {
    return a * std::sqrt(1.0 / b);
  }
};

using Tensor = framework::Tensor;
using LoDTensor = framework::LoDTensor;
using DataLayout = framework::DataLayout;

C
chengduoZH 已提交
67 68 69
template <typename DeviceContext, typename T>
class LayerNormKernel : public framework::OpKernel<T> {
 public:
C
chengduoZH 已提交
70 71 72 73 74 75 76 77 78 79 80
  void Compute(const framework::ExecutionContext &ctx) const override {
    const float epsilon = ctx.Attr<float>("epsilon");
    auto *scale = ctx.Input<Tensor>("Scale");
    auto *bias = ctx.Input<Tensor>("Bias");
    auto x = *ctx.Input<Tensor>("X");

    auto *y = ctx.Output<Tensor>("Y");
    auto *mean = ctx.Output<Tensor>("Mean");
    auto *var = ctx.Output<Tensor>("Variance");
    const auto begin_norm_axis = ctx.Attr<int>("begin_norm_axis");

C
chengduoZH 已提交
81
    const auto x_dims = x.dims();
C
chengduoZH 已提交
82 83 84 85 86 87 88 89 90 91 92

    y->mutable_data<T>(ctx.GetPlace());
    mean->mutable_data<T>(ctx.GetPlace());
    var->mutable_data<T>(ctx.GetPlace());

    auto matrix_dim = framework::flatten_to_2d(x_dims, begin_norm_axis);
    int left = static_cast<int>(matrix_dim[0]);
    int right = static_cast<int>(matrix_dim[1]);
    framework::DDim matrix_shape({left, right});

    x.Resize(matrix_shape);
C
chengduoZH 已提交
93 94 95
    Tensor out;
    out.ShareDataWith(*y);
    out.Resize(matrix_shape);
C
chengduoZH 已提交
96 97 98 99

    auto &dev_ctx = ctx.template device_context<DeviceContext>();
    math::RowwiseMean<DeviceContext, T> row_mean;

C
chengduoZH 已提交
100
    // get mean
C
chengduoZH 已提交
101 102
    row_mean(dev_ctx, x, mean);

C
chengduoZH 已提交
103
    // get variance
C
chengduoZH 已提交
104
    ElementwiseComputeEx<SubAndSquareFunctor<T>, DeviceContext, T>(
C
chengduoZH 已提交
105 106
        ctx, &x, mean, /*axis*/ 0, SubAndSquareFunctor<T>(), &out);
    row_mean(dev_ctx, out, var);
C
chengduoZH 已提交
107

C
chengduoZH 已提交
108
    // get x_norm
C
chengduoZH 已提交
109
    ElementwiseComputeEx<SubFunctor<T>, DeviceContext, T>(
C
chengduoZH 已提交
110
        ctx, &x, mean, /*axis*/ 0, SubFunctor<T>(), &out);
C
chengduoZH 已提交
111
    ElementwiseComputeEx<DivAndSqrtFunctor<T>, DeviceContext, T>(
C
chengduoZH 已提交
112 113
        ctx, &out, var, /*axis*/ 0,
        DivAndSqrtFunctor<T>(static_cast<T>(epsilon)), &out);
C
chengduoZH 已提交
114 115 116

    if (scale) {
      ElementwiseComputeEx<MulFunctor<T>, DeviceContext, T>(
C
chengduoZH 已提交
117
          ctx, &out, scale, /*axis*/ 1, MulFunctor<T>(), &out);
C
chengduoZH 已提交
118 119 120
    }
    if (bias) {
      ElementwiseComputeEx<AddFunctor<T>, DeviceContext, T>(
C
chengduoZH 已提交
121
          ctx, &out, bias, /*axis*/ 1, AddFunctor<T>(), &out);
C
chengduoZH 已提交
122 123
    }
  }
C
chengduoZH 已提交
124 125 126 127 128
};

template <typename DeviceContext, typename T>
class LayerNormGradKernel : public framework::OpKernel<T> {
 public:
C
chengduoZH 已提交
129 130 131
  void Compute(const framework::ExecutionContext &ctx) const override {
    const float epsilon = ctx.Attr<float>("epsilon");
    auto x = *ctx.Input<Tensor>("X");
C
chengduoZH 已提交
132 133 134 135 136
    auto *y = ctx.Input<Tensor>("Y");
    auto *mean = ctx.Input<Tensor>("Mean");
    auto *var = ctx.Input<Tensor>("Variance");
    auto *scale = ctx.Input<Tensor>("Scale");
    auto *bias = ctx.Input<Tensor>("Bias");
C
chengduoZH 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
    auto d_y = *ctx.Input<Tensor>(framework::GradVarName("Y"));
    const auto begin_norm_axis = ctx.Attr<int>("begin_norm_axis");

    // init output
    auto *d_x = ctx.Output<Tensor>(framework::GradVarName("X"));
    auto *d_scale = ctx.Output<Tensor>(framework::GradVarName("Scale"));
    auto *d_bias = ctx.Output<Tensor>(framework::GradVarName("Bias"));

    const auto &x_dims = x.dims();
    auto matrix_dim = framework::flatten_to_2d(x_dims, begin_norm_axis);
    int left = static_cast<int>(matrix_dim[0]);
    int right = static_cast<int>(matrix_dim[1]);
    framework::DDim matrix_shape({left, right});

    d_y.Resize(matrix_shape);
    auto &dev_ctx = ctx.template device_context<DeviceContext>();
    math::ColwiseSum<DeviceContext, T> colwise_sum;

    Tensor temp;
    Tensor temp_norm;
    if (d_scale || d_x) {
      x.Resize(matrix_shape);
      temp.mutable_data<T>(matrix_shape, ctx.GetPlace());

C
chengduoZH 已提交
161 162 163 164 165 166 167 168 169 170 171 172
      if (!(bias && scale)) {
        temp_norm.ShareDataWith(*y);
        temp_norm.Resize(matrix_shape);
      } else {
        temp_norm.mutable_data<T>(matrix_shape, ctx.GetPlace());
        // get x_norm
        ElementwiseComputeEx<SubFunctor<T>, DeviceContext, T>(
            ctx, &x, mean, /*axis*/ 0, SubFunctor<T>(), &temp_norm);
        ElementwiseComputeEx<DivAndSqrtFunctor<T>, DeviceContext, T>(
            ctx, &temp_norm, var, /*axis*/ 0,
            DivAndSqrtFunctor<T>(static_cast<T>(epsilon)), &temp_norm);
      }
C
chengduoZH 已提交
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
    }

    if (d_bias) {
      d_bias->mutable_data<T>(ctx.GetPlace());
      colwise_sum(dev_ctx, d_y, d_bias);
    }
    if (d_scale) {
      d_scale->mutable_data<T>(ctx.GetPlace());
      ElementwiseComputeEx<MulFunctor<T>, DeviceContext, T>(
          ctx, &temp_norm, &d_y, /*axis*/ 0, MulFunctor<T>(), &temp);
      colwise_sum(dev_ctx, temp, d_scale);
    }

    if (d_x) {
      framework::DDim vec_shape({left});
      d_x->mutable_data<T>(ctx.GetPlace());
C
chengduoZH 已提交
189
      auto dx_dim = d_x->dims();
C
chengduoZH 已提交
190 191 192 193 194 195 196 197
      Tensor temp_vec;
      temp_vec.mutable_data<T>(vec_shape, ctx.GetPlace());

      math::RowwiseMean<DeviceContext, T> row_mean;

      if (d_scale) {
        // dy_dx
        ElementwiseComputeEx<MulFunctor<T>, DeviceContext, T>(
C
chengduoZH 已提交
198
            ctx, &d_y, scale, /*axis*/ 1, MulFunctor<T>(), &temp);
C
chengduoZH 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
        framework::Copy(temp, ctx.GetPlace(), ctx.device_context(), d_x);

        // dy_dmean_dx
        row_mean(dev_ctx, temp, &temp_vec);
        ElementwiseComputeEx<SubFunctor<T>, DeviceContext, T>(
            ctx, d_x, &temp_vec, /*axis*/ 0, SubFunctor<T>(), d_x);

        // dy_var_dx
        ElementwiseComputeEx<MulFunctor<T>, DeviceContext, T>(
            ctx, &temp, &temp_norm, /*axis*/ 0, MulFunctor<T>(), &temp);
      } else {
        // dy_dx
        framework::Copy(d_y, ctx.GetPlace(), ctx.device_context(), d_x);

        // dy_dmean_dx
        row_mean(dev_ctx, d_y, &temp_vec);
        ElementwiseComputeEx<SubFunctor<T>, DeviceContext, T>(
            ctx, d_x, &temp_vec, /*axis*/ 0, SubFunctor<T>(), d_x);

        // dy_var_dx
        ElementwiseComputeEx<MulFunctor<T>, DeviceContext, T>(
            ctx, &d_y, &temp_norm, /*axis*/ 0, MulFunctor<T>(), &temp);
      }
      // dy_var_dx
      row_mean(dev_ctx, temp, &temp_vec);
      ElementwiseComputeEx<MulFunctor<T>, DeviceContext, T>(
C
chengduoZH 已提交
225
          ctx, &temp_norm, &temp_vec, /*axis*/ 0, MulFunctor<T>(), &temp);
C
chengduoZH 已提交
226
      ElementwiseComputeEx<SubFunctor<T>, DeviceContext, T>(
C
chengduoZH 已提交
227
          ctx, d_x, &temp, /*axis*/ 0, SubFunctor<T>(), d_x);
C
chengduoZH 已提交
228 229

      ElementwiseComputeEx<DivAndSqrtFunctor<T>, DeviceContext, T>(
C
chengduoZH 已提交
230
          ctx, d_x, var, /*axis*/ 0,
C
chengduoZH 已提交
231
          DivAndSqrtFunctor<T>(static_cast<T>(epsilon)), d_x);
C
chengduoZH 已提交
232
      d_x->Resize(dx_dim);
C
chengduoZH 已提交
233 234
    }
  }
C
chengduoZH 已提交
235 236 237 238
};

}  // namespace operators
}  // namespace paddle