matmul_v2_op_npu.cc 16.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* 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>

#include "paddle/fluid/operators/matmul_v2_op.h"
19
#include "paddle/fluid/platform/device/npu/npu_op_runner.h"
20 21 22 23

namespace paddle {
namespace operators {

24 25 26 27
using NPUDeviceContext = platform::NPUDeviceContext;

template <typename T>
static void MatMul2D(const framework::ExecutionContext& ctx,
28
                     const aclrtStream& stream,
29 30 31
                     const phi::DenseTensor& X,
                     const phi::DenseTensor& Y,
                     phi::DenseTensor* Out,
32
                     const bool trans_x,
33 34 35
                     const bool trans_y) {
  Out->mutable_data<T>(ctx.GetPlace());
  const auto& runner =
36 37 38
      NpuOpRunner("MatMul",
                  {X, Y},
                  {*Out},
39 40 41 42 43 44
                  {{"transpose_x1", trans_x}, {"transpose_x2", trans_y}});
  runner.Run(stream);
}

template <typename T>
static void MatMulND(const framework::ExecutionContext& ctx,
45
                     const aclrtStream& stream,
46 47 48
                     const phi::DenseTensor& X,
                     const phi::DenseTensor& Y,
                     phi::DenseTensor* Out,
49
                     const bool trans_x,
50 51
                     const bool trans_y) {
  Out->mutable_data<T>(ctx.GetPlace());
52 53 54
  const auto& runner = NpuOpRunner("BatchMatMul",
                                   {X, Y},
                                   {*Out},
55 56 57 58
                                   {{"adj_x1", trans_x}, {"adj_x2", trans_y}});
  runner.Run(stream);
}

59 60 61 62
#if (CANN_VERSION_CODE < 504000)
template <>
void MatMulND<phi::dtype::float16>(const framework::ExecutionContext& ctx,
                                   const aclrtStream& stream,
63 64 65
                                   const phi::DenseTensor& X,
                                   const phi::DenseTensor& Y,
                                   phi::DenseTensor* Out,
66 67 68
                                   const bool trans_x,
                                   const bool trans_y) {
  Out->mutable_data<phi::dtype::float16>(ctx.GetPlace());
69
  phi::DenseTensor x_fp32, y_fp32, out_fp32;
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
  x_fp32.Resize(X.dims());
  y_fp32.Resize(Y.dims());
  out_fp32.Resize(Out->dims());
  x_fp32.mutable_data<float>(ctx.GetPlace());
  y_fp32.mutable_data<float>(ctx.GetPlace());
  out_fp32.mutable_data<float>(ctx.GetPlace());

  const auto& cast_x =
      NpuOpRunner("Cast",
                  {X},
                  {x_fp32},
                  {{"dst_type",
                    static_cast<int>(ConvertToNpuDtype(
                        framework::TransToProtoVarType(x_fp32.type())))}});
  cast_x.Run(stream);
  const auto& cast_y =
      NpuOpRunner("Cast",
                  {Y},
                  {y_fp32},
                  {{"dst_type",
                    static_cast<int>(ConvertToNpuDtype(
                        framework::TransToProtoVarType(y_fp32.type())))}});
  cast_y.Run(stream);

  const auto& runner = NpuOpRunner("BatchMatMul",
                                   {x_fp32, y_fp32},
                                   {out_fp32},
                                   {{"adj_x1", trans_x}, {"adj_x2", trans_y}});
  runner.Run(stream);

  const auto& cast_out = NpuOpRunner(
      "Cast",
      {out_fp32},
      {*Out},
      {{"dst_type",
        static_cast<int>(
            ConvertToNpuDtype(framework::TransToProtoVarType(Out->type())))}});
  cast_out.Run(stream);
}
#endif

111 112 113 114
template <typename T>
static void ReduceDims(const framework::ExecutionContext& ctx,
                       const aclrtStream& stream,
                       const std::vector<int64_t>& dims,
115
                       const std::vector<int64_t>& brd_dims,
116 117
                       const phi::DenseTensor& in,
                       phi::DenseTensor* out) {
118 119 120 121 122 123 124 125 126 127 128 129 130
  std::vector<int64_t> axes;
  int64_t size = brd_dims.size();
  int64_t diff = brd_dims.size() - dims.size();
  for (int64_t i = 0; i < size; ++i) {
    if (i < diff) {
      axes.push_back(i);
      continue;
    }
    if (brd_dims[i] > dims[i - diff]) {
      axes.push_back(i);
    }
  }
  out->mutable_data<T>(ctx.GetPlace());
131 132
  const auto& runner = NpuOpRunner(
      "ReduceSumD", {in}, {*out}, {{"axes", axes}, {"keep_dims", false}});
133 134 135 136
  runner.Run(stream);
}

template <typename T>
137 138 139
class MatMulV2NPUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
140 141 142
    auto* X = ctx.Input<phi::DenseTensor>("X");
    auto* Y = ctx.Input<phi::DenseTensor>("Y");
    auto* Out = ctx.Output<phi::DenseTensor>("Out");
143 144 145
    const bool trans_x = ctx.Attr<bool>("trans_x");
    const bool trans_y = ctx.Attr<bool>("trans_y");

146 147 148
    std::vector<int64_t> x_dims = phi::vectorize(X->dims());
    std::vector<int64_t> y_dims = phi::vectorize(Y->dims());
    std::vector<int64_t> out_dims = phi::vectorize(Out->dims());
149 150 151
    int x_ndim = x_dims.size();
    int y_ndim = y_dims.size();
    int out_ndim = out_dims.size();
152

153
    auto stream = ctx.template device_context<NPUDeviceContext>().stream();
154

155 156 157
    // Case 1: [K] x [K] = [1]
    if (x_ndim == 1 && y_ndim == 1) {
      PADDLE_ENFORCE_EQ(
158 159
          X->numel(),
          Y->numel(),
160 161 162 163
          platform::errors::InvalidArgument(
              "X's numbers must be equal to Y's numbers,"
              "when X/Y's dims =1. But received X has [%d] elements,"
              "received Y has [%d] elements",
164 165
              X->numel(),
              Y->numel()));
166 167
      Out->Resize({1});
      Out->mutable_data<T>(ctx.GetPlace());
168

169
      const auto& runner = NpuOpRunner("Dot", {*X, *Y}, {*Out});
170
      runner.Run(stream);
171 172 173 174
      return;
    }

    // Resize dim 1 to 2
175
    phi::DenseTensor x_temp, y_temp;
176 177 178 179 180
    x_temp.ShareDataWith(*X);
    y_temp.ShareDataWith(*Y);
    if (x_ndim == 1) {
      x_dims.insert(x_dims.begin(), 1);
      out_dims.insert(out_dims.end() - 1, 1);
181
      x_temp.Resize(phi::make_ddim(x_dims));
182 183 184 185 186 187
      x_ndim = 2;
      out_ndim += 1;
    }
    if (y_ndim == 1) {
      y_dims.push_back(1);
      out_dims.push_back(1);
188
      y_temp.Resize(phi::make_ddim(y_dims));
189 190 191 192 193 194
      y_ndim = 2;
      out_ndim += 1;
    }

    const int K = trans_x ? x_dims[x_ndim - 2] : x_dims[x_ndim - 1];
    if (trans_y) {
195 196 197 198 199 200 201 202 203 204
      PADDLE_ENFORCE_EQ(
          y_dims[y_ndim - 1],
          K,
          platform::errors::InvalidArgument("Input(Y) has error dim."
                                            "Y'dims[%d] must be equal to %d"
                                            "But received Y'dims[%d] is %d",
                                            y_ndim - 1,
                                            K,
                                            y_ndim - 1,
                                            y_dims[y_ndim - 1]));
205
    } else {
206 207 208 209 210 211 212 213 214 215
      PADDLE_ENFORCE_EQ(
          y_dims[y_ndim - 2],
          K,
          platform::errors::InvalidArgument("Input(Y) has error dim."
                                            "Y'dims[%d] must be equal to %d"
                                            "But received Y'dims[%d] is %d",
                                            y_ndim - 2,
                                            K,
                                            y_ndim - 2,
                                            y_dims[y_ndim - 2]));
216
    }
217 218 219 220 221 222 223 224 225 226 227

    // Case 2: [M, K] x [K, N] = [M, N]
    if (x_ndim == 2 && y_ndim == 2) {
      MatMul2D<T>(ctx, stream, x_temp, y_temp, Out, trans_x, trans_y);
      return;
    }

    // Case 3: [B, M, K] x [K, N] =  [B, M, N], when trans_x = false
    // Equal: [B * M, K] x [K, N] = [B * M, N] => [B, M, N]
    if (trans_x == false && y_ndim == 2) {
      std::vector<int64_t> vec_dim = {x_temp.numel() / K, K};
228
      x_temp.Resize(phi::make_ddim(vec_dim));
229 230 231 232 233 234 235 236 237 238 239 240
      MatMul2D<T>(ctx, stream, x_temp, y_temp, Out, trans_x, trans_y);
      return;
    }

    // Case 4: [B, M, K] x  [B, K, N] = [B, M, N]
    std::vector<int64_t> x_broadcast_dims(out_ndim, 1);
    std::vector<int64_t> y_broadcast_dims(out_ndim, 1);
    std::copy(out_dims.begin(), out_dims.end() - 2, x_broadcast_dims.begin());
    std::copy(out_dims.begin(), out_dims.end() - 2, y_broadcast_dims.begin());
    std::copy(x_dims.end() - 2, x_dims.end(), x_broadcast_dims.end() - 2);
    std::copy(y_dims.end() - 2, y_dims.end(), y_broadcast_dims.end() - 2);

241
    phi::DenseTensor x_temp_brd(X->type());
242 243
    if (x_dims == x_broadcast_dims) {
      x_temp_brd.ShareDataWith(*X);
244
      x_temp_brd.Resize(phi::make_ddim(x_broadcast_dims));
245
    } else {
246
      x_temp_brd.Resize(phi::make_ddim(x_broadcast_dims));
247 248 249 250 251 252 253 254 255
      x_temp_brd.mutable_data<T>(ctx.GetPlace());
      NpuOpRunner runner_brd;
      runner_brd.SetType("BroadcastTo")
          .AddInput(x_temp)
          .AddInput(std::move(x_broadcast_dims))
          .AddOutput(x_temp_brd)
          .Run(stream);
    }

256
    phi::DenseTensor y_temp_brd(Y->type());
257 258
    if (y_dims == y_broadcast_dims) {
      y_temp_brd.ShareDataWith(*Y);
259
      y_temp_brd.Resize(phi::make_ddim(y_broadcast_dims));
260
    } else {
261
      y_temp_brd.Resize(phi::make_ddim(y_broadcast_dims));
262 263 264 265 266 267 268 269 270
      y_temp_brd.mutable_data<T>(ctx.GetPlace());
      NpuOpRunner runner_brd;
      runner_brd.SetType("BroadcastTo")
          .AddInput(y_temp)
          .AddInput(std::move(y_broadcast_dims))
          .AddOutput(y_temp_brd)
          .Run(stream);
    }
    MatMulND<T>(ctx, stream, x_temp_brd, y_temp_brd, Out, trans_x, trans_y);
271 272 273
  }
};

274
template <typename T>
275 276 277
class MatMulV2GradNPUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
278 279 280 281 282
    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"));
283 284
    const bool trans_x = ctx.Attr<bool>("trans_x");
    const bool trans_y = ctx.Attr<bool>("trans_y");
285

286 287 288
    std::vector<int64_t> x_dims = phi::vectorize(X->dims());
    std::vector<int64_t> y_dims = phi::vectorize(Y->dims());
    std::vector<int64_t> out_dims = phi::vectorize(dOut->dims());
289 290 291
    int x_ndim = x_dims.size();
    int y_ndim = y_dims.size();
    int out_ndim = out_dims.size();
292

293
    auto stream = ctx.template device_context<NPUDeviceContext>().stream();
294

295 296
    // Case 1: [K] x [K] = [1]
    if (x_ndim == 1 && y_ndim == 1) {
297
      phi::DenseTensor dout_temp(dOut->type());
298 299 300 301 302 303 304 305
      dout_temp.Resize(X->dims());
      dout_temp.mutable_data<T>(ctx.GetPlace());
      NpuOpRunner runner;
      runner.SetType("BroadcastTo")
          .AddInput(*dOut)
          .AddInput(std::move(x_dims))
          .AddOutput(dout_temp)
          .Run(stream);
306

307 308 309 310 311 312 313 314 315 316 317 318 319 320
      if (dX) {
        dX->mutable_data<T>(ctx.GetPlace());
        const auto& runner_dx = NpuOpRunner("Mul", {dout_temp, *Y}, {*dX}, {});
        runner_dx.Run(stream);
      }
      if (dY) {
        dY->mutable_data<T>(ctx.GetPlace());
        const auto& runner_dy = NpuOpRunner("Mul", {dout_temp, *X}, {*dY}, {});
        runner_dy.Run(stream);
      }
      return;
    }

    // Resize dim 1 to 2
321
    phi::DenseTensor x_temp, y_temp, dout_temp;
322 323 324 325 326 327
    x_temp.ShareDataWith(*X);
    y_temp.ShareDataWith(*Y);
    dout_temp.ShareDataWith(*dOut);
    if (x_ndim == 1) {
      x_dims.insert(x_dims.begin(), 1);
      out_dims.insert(out_dims.end() - 1, 1);
328 329
      x_temp.Resize(phi::make_ddim(x_dims));
      dout_temp.Resize(phi::make_ddim(out_dims));
330 331 332 333 334 335
      x_ndim = 2;
      out_ndim += 1;
    }
    if (y_ndim == 1) {
      y_dims.push_back(1);
      out_dims.push_back(1);
336 337
      y_temp.Resize(phi::make_ddim(y_dims));
      dout_temp.Resize(phi::make_ddim(out_dims));
338 339 340 341 342 343 344
      y_ndim = 2;
      out_ndim += 1;
    }

    // Case 2: [M, K] x [K, N] = [M, N]
    if (out_ndim == 2) {
      if (dX) {
345
        dX->Resize(phi::make_ddim(x_dims));
346 347 348 349
        if (trans_x) {
          MatMul2D<T>(ctx, stream, y_temp, dout_temp, dX, trans_y, true);
        } else {
          MatMul2D<T>(ctx, stream, dout_temp, y_temp, dX, false, !trans_y);
350
        }
351
        dX->Resize(X->dims());
352
      }
353
      if (dY) {
354
        dY->Resize(phi::make_ddim(y_dims));
355 356 357 358
        if (trans_y) {
          MatMul2D<T>(ctx, stream, dout_temp, x_temp, dY, true, trans_x);
        } else {
          MatMul2D<T>(ctx, stream, x_temp, dout_temp, dY, !trans_x, false);
359
        }
360 361 362 363 364 365 366
        dY->Resize(Y->dims());
      }
      return;
    }

    const int K = trans_x ? x_dims[x_ndim - 2] : x_dims[x_ndim - 1];
    const int N = trans_y ? y_dims[y_ndim - 2] : y_dims[y_ndim - 1];
367

368 369 370 371 372
    // Case 3: [B, M, K] x [K, N] =  [B, M, N], when trans_x = false
    // Equal: [B * M, K] x [K, N] = [B * M, N] => [B, M, N]
    if (trans_x == false && y_ndim == 2) {
      std::vector<int64_t> x_vec_dim = {x_temp.numel() / K, K};
      dout_temp.Resize(
373
          phi::make_ddim(std::vector<int64_t>{dout_temp.numel() / N, N}));
374
      if (dX) {
375
        dX->Resize(phi::make_ddim(x_vec_dim));
376 377 378 379
        MatMul2D<T>(ctx, stream, dout_temp, y_temp, dX, false, !trans_y);
        dX->Resize(X->dims());
      }
      if (dY) {
380
        x_temp.Resize(phi::make_ddim(x_vec_dim));
381 382 383 384
        if (trans_y) {
          MatMul2D<T>(ctx, stream, dout_temp, x_temp, dY, true, false);
        } else {
          MatMul2D<T>(ctx, stream, x_temp, dout_temp, dY, true, false);
385
        }
386 387 388 389 390 391 392 393 394 395 396 397
      }
      return;
    }

    // Case 4: [B, M, K] x  [B, K, N] = [B, M, N]
    std::vector<int64_t> x_broadcast_dims(out_ndim, 1);
    std::vector<int64_t> y_broadcast_dims(out_ndim, 1);
    std::copy(out_dims.begin(), out_dims.end() - 2, x_broadcast_dims.begin());
    std::copy(out_dims.begin(), out_dims.end() - 2, y_broadcast_dims.begin());
    std::copy(x_dims.end() - 2, x_dims.end(), x_broadcast_dims.end() - 2);
    std::copy(y_dims.end() - 2, y_dims.end(), y_broadcast_dims.end() - 2);

398
    phi::DenseTensor x_temp_brd(X->type());
399 400
    if (x_dims == x_broadcast_dims) {
      x_temp_brd.ShareDataWith(*X);
401
      x_temp_brd.Resize(phi::make_ddim(x_broadcast_dims));
402
    } else {
403
      x_temp_brd.Resize(phi::make_ddim(x_broadcast_dims));
404 405 406 407 408 409 410 411
      x_temp_brd.mutable_data<T>(ctx.GetPlace());
      NpuOpRunner runner_brd;
      runner_brd.SetType("BroadcastTo")
          .AddInput(x_temp)
          .AddInput(std::move(x_broadcast_dims))
          .AddOutput(x_temp_brd)
          .Run(stream);
    }
412

413
    phi::DenseTensor y_temp_brd(Y->type());
414 415
    if (y_dims == y_broadcast_dims) {
      y_temp_brd.ShareDataWith(*Y);
416
      y_temp_brd.Resize(phi::make_ddim(y_broadcast_dims));
417
    } else {
418
      y_temp_brd.Resize(phi::make_ddim(y_broadcast_dims));
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
      y_temp_brd.mutable_data<T>(ctx.GetPlace());
      NpuOpRunner runner_brd;
      runner_brd.SetType("BroadcastTo")
          .AddInput(y_temp)
          .AddInput(std::move(y_broadcast_dims))
          .AddOutput(y_temp_brd)
          .Run(stream);
    }

    if (dX) {
      if (x_dims == x_broadcast_dims) {
        if (trans_x) {
          MatMulND<T>(ctx, stream, y_temp_brd, dout_temp, dX, trans_y, true);
        } else {
          MatMulND<T>(ctx, stream, dout_temp, y_temp_brd, dX, false, !trans_y);
434
        }
435
      } else {
436
        phi::DenseTensor dx_temp(X->type());
437
        dx_temp.Resize(phi::make_ddim(x_broadcast_dims));
438
        if (trans_x) {
439 440
          MatMulND<T>(
              ctx, stream, y_temp_brd, dout_temp, &dx_temp, trans_y, true);
441
        } else {
442 443
          MatMulND<T>(
              ctx, stream, dout_temp, y_temp_brd, &dx_temp, false, !trans_y);
444
        }
445 446 447 448 449 450 451 452 453 454 455
        ReduceDims<T>(ctx, stream, x_dims, x_broadcast_dims, dx_temp, dX);
      }
    }
    if (dY) {
      if (y_dims == y_broadcast_dims) {
        if (trans_y) {
          MatMulND<T>(ctx, stream, dout_temp, x_temp_brd, dY, true, trans_x);
        } else {
          MatMulND<T>(ctx, stream, x_temp_brd, dout_temp, dY, !trans_x, false);
        }
      } else {
456
        phi::DenseTensor dy_temp(Y->type());
457
        dy_temp.Resize(phi::make_ddim(y_broadcast_dims));
458
        if (trans_y) {
459 460
          MatMulND<T>(
              ctx, stream, dout_temp, x_temp_brd, &dy_temp, true, trans_x);
461
        } else {
462 463
          MatMulND<T>(
              ctx, stream, x_temp_brd, dout_temp, &dy_temp, !trans_x, false);
464 465
        }
        ReduceDims<T>(ctx, stream, y_dims, y_broadcast_dims, dy_temp, dY);
466 467 468 469
      }
    }
  }
};
470

471 472 473 474 475
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

476 477
REGISTER_OP_NPU_KERNEL(matmul_v2,
                       ops::MatMulV2NPUKernel<float>,
478
                       ops::MatMulV2NPUKernel<paddle::platform::float16>);
479 480
REGISTER_OP_NPU_KERNEL(matmul_v2_grad,
                       ops::MatMulV2GradNPUKernel<float>,
481
                       ops::MatMulV2GradNPUKernel<paddle::platform::float16>);