“c492f0edca08f89458b400ec91debc37dc0200ef”上不存在“projects/silence-tang/imports.yml”
batch_norm_op_xpu.cc 12.9 KB
Newer Older
1
/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

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

#ifdef PADDLE_WITH_XPU

#include "paddle/fluid/operators/batch_norm_op.h"
18 19
#include <iterator>
#include <vector>
20 21 22 23 24 25 26 27 28 29

namespace paddle {
namespace operators {

using Tensor = framework::Tensor;
using DDim = framework::DDim;

template <typename DeviceContext, typename T>
class BatchNormXPUKernel : public framework::OpKernel<T> {
 public:
30
  void Compute(const framework::ExecutionContext &ctx) const override {
31
    const auto epsilon = ctx.Attr<float>("epsilon");
32
    float momentum = ctx.Attr<float>("momentum");
33 34 35 36
    const auto is_test = ctx.Attr<bool>("is_test");
    const auto use_global_stats = ctx.Attr<bool>("use_global_stats");
    const auto trainable_stats = ctx.Attr<bool>("trainable_statistics");
    bool test_mode = is_test && (!trainable_stats);
37

38
    bool global_stats = test_mode || use_global_stats;
39
    const auto &data_layout_str = ctx.Attr<std::string>("data_layout");
40
    const auto data_layout = framework::StringToDataLayout(data_layout_str);
41 42
    const auto *x = ctx.Input<Tensor>("X");
    const auto &x_dims = x->dims();
43 44 45 46 47 48 49
    int temp = x_dims[3];
    temp = (x_dims.size() != 4) ? 1 : temp;
    bool is_nchw = (data_layout == DataLayout::kNCHW);
    const int N = x_dims[0];
    const int C = is_nchw ? x_dims[1] : temp;
    const int H = is_nchw ? x_dims[2] : x_dims[1];
    const int W = is_nchw ? temp : x_dims[2];
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
    const auto *scale = ctx.Input<Tensor>("Scale");
    const auto *bias = ctx.Input<Tensor>("Bias");
    const auto *x_data = x->data<T>();
    const auto *scale_data = scale->data<float>();
    const auto *bias_data = bias->data<float>();

    auto *y = ctx.Output<Tensor>("Y");
    auto *mean_out = ctx.Output<Tensor>("MeanOut");
    auto *variance_out = ctx.Output<Tensor>("VarianceOut");
    auto *saved_mean = ctx.Output<Tensor>("SavedMean");
    auto *saved_variance = ctx.Output<Tensor>("SavedVariance");

    // alloc memory
    auto *y_data = y->mutable_data<T>(ctx.GetPlace());
    mean_out->mutable_data<float>(ctx.GetPlace());
    variance_out->mutable_data<float>(ctx.GetPlace());
    saved_mean->mutable_data<float>(ctx.GetPlace());
    saved_variance->mutable_data<float>(ctx.GetPlace());

    auto &dev_ctx = ctx.template device_context<DeviceContext>();

71
    if (!global_stats) {
72 73 74 75 76 77 78 79 80 81
      auto *mean_out_data = mean_out->data<float>();
      auto *variance_out_data = variance_out->data<float>();
      auto *saved_mean_data = saved_mean->data<float>();
      auto *saved_variance_data = saved_variance->data<float>();

      // if MomentumTensor is set, use MomentumTensor value, momentum
      // is only used in this training branch
      if (ctx.HasInput("MomentumTensor")) {
        const auto *mom_tensor = ctx.Input<Tensor>("MomentumTensor");
        Tensor mom_cpu;
82 83
        paddle::framework::TensorCopySync(*mom_tensor, platform::CPUPlace(),
                                          &mom_cpu);
84 85
        momentum = mom_tensor->data<float>()[0];
      }
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
      if (C == 1) {
        int r = xpu::batch_norm<T>(dev_ctx.x_context(), x_data, y_data, N, 1, H,
                                   W, epsilon, momentum, scale_data, bias_data,
                                   saved_mean_data, saved_variance_data,
                                   mean_out_data, variance_out_data, true);
        PADDLE_ENFORCE_EQ(
            r, xpu::Error_t::SUCCESS,
            platform::errors::External(
                "The batch_norm XPU API return wrong value[%d %s]", r,
                XPUAPIErrorMsg[r]));
      } else {
        int r = xpu::batch_norm<T>(dev_ctx.x_context(), x_data, y_data, N, C, H,
                                   W, epsilon, momentum, scale_data, bias_data,
                                   saved_mean_data, saved_variance_data,
                                   mean_out_data, variance_out_data, is_nchw);
        PADDLE_ENFORCE_EQ(
            r, xpu::Error_t::SUCCESS,
            platform::errors::External(
                "The batch_norm XPU API return wrong value[%d %s]", r,
                XPUAPIErrorMsg[r]));
      }
107
    } else {
108 109 110 111
      const auto *mean = ctx.Input<Tensor>("Mean");
      const auto *variance = ctx.Input<Tensor>("Variance");
      const auto *mean_data = mean->data<float>();
      const auto *variance_data = variance->data<float>();
112 113
      int r = xpu::batch_norm_infer(dev_ctx.x_context(), x_data, y_data, N, C,
                                    H, W, epsilon, scale_data, bias_data,
114
                                    mean_data, variance_data, true);
115
      PADDLE_ENFORCE_EQ(
116 117 118 119
          r, xpu::Error_t::SUCCESS,
          platform::errors::External(
              "The batch_norm_infer XPU API return wrong value[%d %s]", r,
              XPUAPIErrorMsg[r]));
120 121 122 123
    }
  }
};

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
template <typename T>
static int calculate_inv_BN_Y(xpu::Context *ctx, T *x, const T *scale,
                              const T *bias, const T *mean, const T *variance,
                              const int N, const int C, const int M,
                              const T *y) {
  PADDLE_ENFORCE_EQ(x, y, platform::errors::InvalidArgument(
                              "X and Y should be inplaced in inplace mode"));
  std::vector<int> tensor_shape_vec({N, C, M});
  std::vector<int> array_shape_vec({1, C, 1});
  // y - bias
  int r1 =
      xpu::broadcast_sub<T>(ctx, bias, y, x, array_shape_vec, tensor_shape_vec);
  // (y - bias) / scale
  int r2 = xpu::broadcast_div<T>(ctx, scale, x, x, array_shape_vec,
                                 tensor_shape_vec);
  // (y - bias) / scale / variance
  int r3 = xpu::broadcast_div<T>(ctx, variance, x, x, array_shape_vec,
                                 tensor_shape_vec);
  // (y - bias) / scale / variance + mean
  int r4 =
      xpu::broadcast_add<T>(ctx, mean, x, x, array_shape_vec, tensor_shape_vec);

  return r1 + r2 + r3 + r4;
}

template <typename T>
static int calculate_inv_var(xpu::Context *ctx, const T *var, const T epsilon,
                             const int C, T *epsilon_data, T *inv_var) {
  int r1 = constant(ctx, epsilon_data, 1, epsilon);
  std::vector<int> tensor_shape_vec({C});
  std::vector<int> array_shape_vec({1});
  int r2 = xpu::broadcast_add<T>(ctx, epsilon_data, var, inv_var,
                                 array_shape_vec, tensor_shape_vec);
  int r3 = xpu::rsqrt<T>(ctx, inv_var, inv_var, C);
  return r1 + r2 + r3;
}

161 162 163
template <typename DeviceContext, typename T>
class BatchNormGradXPUKernel : public framework::OpKernel<T> {
 public:
164 165 166 167 168 169 170 171 172
  void Compute(const framework::ExecutionContext &ctx) const override {
    const auto *d_y = ctx.Input<Tensor>(framework::GradVarName("Y"));
    const auto *scale = ctx.Input<Tensor>("Scale");
    const auto *bias = ctx.Input<Tensor>("Bias");

    const auto &data_layout_str = ctx.Attr<std::string>("data_layout");
    bool use_global_stats = ctx.Attr<bool>("use_global_stats");
    const bool is_test = ctx.Attr<bool>("is_test");
    const float epsilon = ctx.Attr<float>("epsilon");
173
    const auto data_layout = framework::StringToDataLayout(data_layout_str);
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206

    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"));

    use_global_stats = is_test || use_global_stats;

    // batch_norm with inplace as false will take X as grad input, which
    // is same as cuDNN batch_norm backward calculation, batch_norm
    // with inplace as true only take Y as input and X should be calculate
    // by inverse operation of batch_norm on Y
    const Tensor *x;
    bool is_inplace;
    if (ctx.HasInput("Y")) {
      x = ctx.Input<Tensor>("Y");
      is_inplace = true;
      // if the input of batch norm is stop_gradient, d_x is null.
      if (d_x) {
        PADDLE_ENFORCE_EQ(d_x, d_y,
                          platform::errors::InvalidArgument(
                              "X@GRAD and Y@GRAD not inplace in inplace mode"));
      }
    } else {
      x = ctx.Input<Tensor>("X");
      is_inplace = false;
      if (d_x) {
        PADDLE_ENFORCE_NE(
            d_x, d_y, platform::errors::InvalidArgument(
                          "X@GRAD and Y@GRAD inplaced in non-inplace mode"));
      }
    }

    const auto &x_dims = x->dims();
207 208 209 210 211 212 213
    int temp = x_dims[3];
    temp = (x_dims.size() != 4) ? 1 : temp;
    bool is_nchw = (data_layout == DataLayout::kNCHW);
    const int N = x_dims[0];
    const int C = is_nchw ? x_dims[1] : temp;
    const int H = is_nchw ? x_dims[2] : x_dims[1];
    const int W = is_nchw ? temp : x_dims[2];
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241

    const auto *x_data = x->data<T>();
    const auto *d_y_data = d_y->data<T>();
    const auto *scale_data = scale->data<float>();

    // init output
    T *d_x_data = nullptr;
    T *d_bias_data = nullptr;
    T *d_scale_data = nullptr;
    if (d_x) {
      d_x_data = d_x->mutable_data<T>(ctx.GetPlace());
    }
    if (d_scale && d_bias) {
      d_scale_data = d_scale->mutable_data<float>(ctx.GetPlace());
      d_bias_data = d_bias->mutable_data<float>(ctx.GetPlace());
    }

    PADDLE_ENFORCE_EQ(
        scale->dims().size(), 1UL,
        platform::errors::InvalidArgument(
            "The size of scale's dimensions must equal to 1. But received: "
            "the size of scale's dimensions is [%d], the dimensions of scale "
            "is [%s].",
            scale->dims().size(), scale->dims()));

    auto &dev_ctx = ctx.template device_context<DeviceContext>();
    xpu::ctx_guard RAII_GUARD(dev_ctx.x_context());

242 243
    const T *mean_data = nullptr;
    const T *inv_var_data = nullptr;
244 245

    // TODO(guozibin): hadle the situation case of N * H * W = 1
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
    if (!use_global_stats) {
      const auto *saved_mean = ctx.Input<Tensor>("SavedMean");
      // SavedVariance have been reverted in forward operator
      const auto *saved_inv_variance = ctx.Input<Tensor>("SavedVariance");
      mean_data = saved_mean->data<float>();
      inv_var_data = saved_inv_variance->data<float>();
    } else {
      const auto *running_mean = ctx.Input<Tensor>("Mean");
      const auto *running_variance = ctx.Input<Tensor>("Variance");
      mean_data = running_mean->data<float>();
      inv_var_data = running_variance->data<float>();
      float *running_inv_var_data =
          RAII_GUARD.alloc_l3_or_gm<float>(running_variance->numel());
      float *epsilon_data = RAII_GUARD.alloc_l3_or_gm<float>(1);
      int r1 = calculate_inv_var(dev_ctx.x_context(), inv_var_data, epsilon, C,
                                 epsilon_data, running_inv_var_data);
      PADDLE_ENFORCE_EQ(r1, XPU_SUCCESS, platform::errors::External(
                                             "XPU API(batch_norm_grad "
                                             "calculate_inv_var function) "
                                             "return wrong value[%d %s]",
                                             r1, XPUAPIErrorMsg[r1]));
      inv_var_data = running_inv_var_data;
    }
269 270 271 272
    if (is_inplace) {
      auto px = *x;
      int r2 = calculate_inv_BN_Y(
          dev_ctx.x_context(), px.mutable_data<T>(ctx.GetPlace()),
273
          scale->data<float>(), bias->data<float>(), mean_data, inv_var_data, N,
274 275 276 277 278 279 280
          C, H * W, x->data<T>());
      PADDLE_ENFORCE_EQ(r2, XPU_SUCCESS, platform::errors::External(
                                             "XPU API(batch_norm_grad "
                                             "calculate_inv_BN_Y function) "
                                             "return wrong value[%d %s]",
                                             r2, XPUAPIErrorMsg[r2]));
    }
281 282
    if (!d_x) {
      d_x_data = RAII_GUARD.alloc_l3_or_gm<T>(x->numel());
283
    }
284 285 286 287 288 289 290 291 292 293
    if (!d_scale) {
      d_scale_data = RAII_GUARD.alloc_l3_or_gm<float>(C);
    }
    if (!d_bias_data) {
      d_bias_data = RAII_GUARD.alloc_l3_or_gm<float>(C);
    }

    int r3 = xpu::batch_norm_grad<T>(
        dev_ctx.x_context(), x_data, d_y_data, d_x_data, N, C, H, W, scale_data,
        mean_data, inv_var_data, d_scale_data, d_bias_data, is_nchw);
294 295 296 297
    PADDLE_ENFORCE_EQ(r3, XPU_SUCCESS, platform::errors::External(
                                           "XPU API(batch_norm_grad) return "
                                           "wrong value[%d %s]",
                                           r3, XPUAPIErrorMsg[r3]));
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

REGISTER_OP_XPU_KERNEL(
    batch_norm,
    ops::BatchNormXPUKernel<paddle::platform::XPUDeviceContext, float>);
REGISTER_OP_XPU_KERNEL(
    batch_norm_grad,
    ops::BatchNormGradXPUKernel<paddle::platform::XPUDeviceContext, float>);

#endif  // PADDLE_WITH_XPU