mul_op_npu.cc 10.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Copyright (c) 2021 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 <memory>
#include <string>

18
#include "paddle/fluid/framework/op_registry.h"
19
#include "paddle/fluid/platform/device/npu/npu_op_runner.h"
20 21 22 23 24 25 26 27

namespace paddle {
namespace operators {

template <typename DeviceContext, typename T>
class MulNPUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
28 29 30
    auto* x = ctx.Input<phi::DenseTensor>("X");
    auto* y = ctx.Input<phi::DenseTensor>("Y");
    auto* out = ctx.Output<phi::DenseTensor>("Out");
31 32 33 34 35 36 37 38
    int x_num_col_dims = ctx.Attr<int>("x_num_col_dims");
    int y_num_col_dims = ctx.Attr<int>("y_num_col_dims");
    auto stream =
        ctx.template device_context<paddle::platform::NPUDeviceContext>()
            .stream();
    if (x_num_col_dims == 1 && y_num_col_dims == 1) {
      if (x->dims().size() == 2 && y->dims().size() == 2) {
        out->mutable_data<T>(ctx.GetPlace());
L
Leo Chen 已提交
39
        const auto& runner =
40 41 42
            NpuOpRunner("MatMul",
                        {*x, *y},
                        {*out},
43 44 45
                        {{"transpose_x1", false}, {"transpose_x2", false}});

        runner.Run(stream);
46
      } else if (x->dims().size() >= 3 && y->dims().size() == 2) {
47 48
        // reshape
        Tensor tmp_x(x->type());
49 50 51 52
        int64_t sec_dim = x->dims()[1];
        for (auto i = 2; i < x->dims().size(); i++) {
          sec_dim *= x->dims()[i];
        }
53
        int64_t first_dim = x->dims()[0];
54
        tmp_x.ShareDataWith(*x);
55
        tmp_x.Resize(phi::make_ddim({first_dim, sec_dim}));
56 57
        out->mutable_data<T>(ctx.GetPlace());
        // matmul
L
Leo Chen 已提交
58
        const auto& runner =
59 60 61
            NpuOpRunner("MatMul",
                        {tmp_x, *y},
                        {*out},
62 63 64 65
                        {{"transpose_x1", false}, {"transpose_x2", false}});
        runner.Run(stream);
      } else {
        PADDLE_THROW(
66
            platform::errors::InvalidArgument("npu error: not support dims"));
67 68 69 70
      }
      // to do other
    } else if (x->dims().size() == 3 && y->dims().size() == 2) {
      // for example: x.shape=[2, 3, 4] y.shape=[4, 5], expect [2, 3, 5]
71 72
      PADDLE_ENFORCE_EQ(x_num_col_dims,
                        2,
73 74 75
                        platform::errors::InvalidArgument(
                            "now only support x_num_col_dims == 2: but got %d",
                            x_num_col_dims));
76 77 78 79
      if (framework::TransToProtoVarType(x->dtype()) ==
              framework::proto::VarType::FP16 &&
          framework::TransToProtoVarType(y->dtype()) ==
              framework::proto::VarType::FP16) {
80 81 82 83
        // NOTE: When the dim of the input and output shapes is inconsistent,
        // (Boradcast) BatchMatMul NPU OP only support FP16.
        out->mutable_data<T>(ctx.GetPlace());
        const auto& runner =
84 85 86
            NpuOpRunner("BatchMatMul",
                        {*x, *y},
                        {*out},
87 88 89 90 91 92 93 94 95 96 97 98
                        {{"adj_x1", false}, {"adj_x2", false}});

        auto stream =
            ctx.template device_context<paddle::platform::NPUDeviceContext>()
                .stream();
        runner.Run(stream);
      } else {
        // flatten => x.shape=[6, 4]
        Tensor tmp_x(x->type());
        int64_t first_dim = x->dims()[0] * x->dims()[1];
        int64_t sec_dim = x->dims()[2];
        tmp_x.ShareDataWith(*x);
99
        tmp_x.Resize(phi::make_ddim({first_dim, sec_dim}));
100 101 102 103 104 105

        // matmul [6,4] , [4, 5] => [6, 5]
        out->mutable_data<T>(ctx.GetPlace());

        Tensor tmp_out(x->type());
        tmp_out.ShareDataWith(*out);
106
        tmp_out.Resize(phi::make_ddim({first_dim, y->dims()[1]}));
107 108

        const auto& runner_matmul =
109 110 111
            NpuOpRunner("MatMul",
                        {tmp_x, *y},
                        {tmp_out},
112 113 114
                        {{"transpose_x1", false}, {"transpose_x2", false}});
        runner_matmul.Run(stream);
      }
115 116 117 118 119 120 121 122
    }
  }
};

template <typename DeviceContext, typename T>
class MulGradNPUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
123 124 125 126 127
    auto* x = ctx.Input<phi::DenseTensor>("X");
    auto* y = ctx.Input<phi::DenseTensor>("Y");
    auto* dout = ctx.Input<phi::DenseTensor>(framework::GradVarName("Out"));
    auto* dx = ctx.Output<phi::DenseTensor>(framework::GradVarName("X"));
    auto* dy = ctx.Output<phi::DenseTensor>(framework::GradVarName("Y"));
128 129 130 131 132 133 134 135 136
    int x_num_col_dims = ctx.Attr<int>("x_num_col_dims");
    int y_num_col_dims = ctx.Attr<int>("y_num_col_dims");
    auto stream =
        ctx.template device_context<paddle::platform::NPUDeviceContext>()
            .stream();
    if (x_num_col_dims == 1 && y_num_col_dims == 1) {
      if (x->dims().size() == 2 && y->dims().size() == 2) {
        if (dx) {
          dx->mutable_data<T>(ctx.GetPlace());
L
Leo Chen 已提交
137
          const auto& runner_dx =
138 139 140
              NpuOpRunner("MatMul",
                          {*dout, *y},
                          {*dx},
141 142 143 144 145 146 147
                          {{"transpose_x1", false}, {"transpose_x2", true}});

          runner_dx.Run(stream);
        }

        if (dy) {
          dy->mutable_data<T>(ctx.GetPlace());
L
Leo Chen 已提交
148
          const auto& runner_dy =
149 150 151
              NpuOpRunner("MatMul",
                          {*x, *dout},
                          {*dy},
152 153 154 155
                          {{"transpose_x1", true}, {"transpose_x2", false}});

          runner_dy.Run(stream);
        }
156
      } else if (x->dims().size() >= 3 && y->dims().size() == 2) {
157 158 159 160 161
        // flatten => x.shape=[6, 4]
        // matmul
        if (dx) {
          // matmul [2, 5] * [12, 5] => [2, 12]
          dx->mutable_data<T>(ctx.GetPlace());
162 163
          Tensor tmp_dx(x->type());
          tmp_dx.ShareDataWith(*dx);
164
          tmp_dx.Resize(phi::make_ddim({dout->dims()[0], y->dims()[0]}));
165

L
Leo Chen 已提交
166
          const auto& runner_matmul =
167 168 169
              NpuOpRunner("MatMul",
                          {*dout, *y},
                          {tmp_dx},
170 171 172 173 174 175 176
                          {{"transpose_x1", false}, {"transpose_x2", true}});
          runner_matmul.Run(stream);
        }

        if (dy) {
          // flatten
          Tensor tmp_x(x->type());
177 178 179 180
          int64_t sec_dim = x->dims()[1];
          for (auto i = 2; i < x->dims().size(); i++) {
            sec_dim *= x->dims()[i];
          }
181
          int64_t first_dim = x->dims()[0];
182
          tmp_x.ShareDataWith(*x);
183
          tmp_x.Resize(phi::make_ddim({first_dim, sec_dim}));
184
          dy->mutable_data<T>(ctx.GetPlace());
L
Leo Chen 已提交
185
          const auto& runner_dy =
186 187 188
              NpuOpRunner("MatMul",
                          {tmp_x, *dout},
                          {*dy},
189 190 191 192 193 194 195
                          {{"transpose_x1", true}, {"transpose_x2", false}});

          runner_dy.Run(stream);
        }
      }
    } else if (x->dims().size() == 3 && y->dims().size() == 2) {
      // for example: x.shape=[2, 3, 4] y.shape=[4, 5], expect [2, 3, 5]
196 197
      PADDLE_ENFORCE_EQ(x_num_col_dims,
                        2,
198 199 200 201 202 203 204
                        platform::errors::InvalidArgument(
                            "now only support x_num_col_dims == 2: but got %d",
                            x_num_col_dims));
      // tmp_dout both used by dx and dy
      Tensor tmp_dout(x->type());
      int64_t dout_first_dim = dout->dims()[0] * dout->dims()[1];
      int64_t dout_sec_dim = dout->dims()[2];
205
      tmp_dout.ShareDataWith(*dout);
206
      tmp_dout.Resize(phi::make_ddim({dout_first_dim, dout_sec_dim}));
207 208

      if (dx) {
209
        // tmp_dout * y [2, 3, 5] * [4,5] => [2, 3, 4]
210 211 212 213
        if (framework::TransToProtoVarType(dout->dtype()) ==
                framework::proto::VarType::FP16 &&
            framework::TransToProtoVarType(y->dtype()) ==
                framework::proto::VarType::FP16) {
214 215 216 217
          // NOTE: When the dim of the input and output shapes is inconsistent,
          // (Boradcast) BatchMatMul NPU OP only support FP16.
          dx->mutable_data<T>(ctx.GetPlace());
          const auto& runner =
218 219 220
              NpuOpRunner("BatchMatMul",
                          {*dout, *y},
                          {*dx},
221 222 223 224 225 226 227 228 229 230
                          {{"adj_x1", false}, {"adj_x2", true}});

          auto stream =
              ctx.template device_context<paddle::platform::NPUDeviceContext>()
                  .stream();
          runner.Run(stream);
        } else {
          dx->mutable_data<T>(ctx.GetPlace());
          Tensor tmp_dx(x->type());
          tmp_dx.ShareDataWith(*dx);
231
          tmp_dx.Resize(phi::make_ddim({dout_first_dim, y->dims()[0]}));
232 233

          const auto& runner_matmul =
234 235 236
              NpuOpRunner("MatMul",
                          {tmp_dout, *y},
                          {tmp_dx},
237 238 239
                          {{"transpose_x1", false}, {"transpose_x2", true}});
          runner_matmul.Run(stream);
        }
240 241 242 243 244 245
      }
      if (dy) {
        // flatten x.shape [2,3,4] => [6, 4]
        Tensor tmp_x(x->type());
        int64_t first_dim = x->dims()[0] * x->dims()[1];
        int64_t sec_dim = x->dims()[2];
246
        tmp_x.ShareDataWith(*x);
247
        tmp_x.Resize(phi::make_ddim({first_dim, sec_dim}));
248 249
        // mamtul [6,4] [6,5] =>[4,5]
        dy->mutable_data<T>(ctx.GetPlace());
L
Leo Chen 已提交
250
        const auto& runner_dy =
251 252 253
            NpuOpRunner("MatMul",
                        {tmp_x, tmp_dout},
                        {*dy},
254 255 256 257 258 259 260 261 262 263 264 265 266
                        {{"transpose_x1", true}, {"transpose_x2", false}});
        runner_dy.Run(stream);
      }
    }
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

REGISTER_OP_NPU_KERNEL(
267 268
    mul,
    ops::MulNPUKernel<paddle::platform::NPUDeviceContext, float>,
269 270 271
    ops::MulNPUKernel<paddle::platform::NPUDeviceContext,
                      paddle::platform::float16>);
REGISTER_OP_NPU_KERNEL(
272 273
    mul_grad,
    ops::MulGradNPUKernel<paddle::platform::NPUDeviceContext, float>,
274 275
    ops::MulGradNPUKernel<paddle::platform::NPUDeviceContext,
                          paddle::platform::float16>);