matmul_v2_op_xpu.cc 11.3 KB
Newer Older
Q
QingshuChen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//   Copyright (c) 2020 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.

#ifdef PADDLE_WITH_XPU

#include "paddle/fluid/operators/matmul_v2_op.h"
#include <string>
#include <vector>

21 22
#include "paddle/fluid/operators/xpu_api_wrapper.h"

Q
QingshuChen 已提交
23 24 25
namespace paddle {
namespace operators {

T
taixiurong 已提交
26 27 28 29
template <typename T, typename FCT>
static void MatMulXPUFunction(const Tensor* x, const Tensor* y, Tensor* out,
                              bool trans_x, bool trans_y,
                              const paddle::framework::ExecutionContext& ctx) {
T
taixiurong 已提交
30
  using XPUType = typename XPUTypeTrait<T>::Type;
T
taixiurong 已提交
31 32
  const auto& x_dims = x->dims();
  const auto& y_dims = y->dims();
Q
QingshuChen 已提交
33 34 35
  auto& dev_ctx =
      ctx.template device_context<paddle::platform::XPUDeviceContext>();

36 37 38 39
  auto mat_dim_a = pten::funcs::CreateMatrixDescriptor(
      RowMatrixFromVector(x_dims), 0, trans_x);
  auto mat_dim_b = pten::funcs::CreateMatrixDescriptor(
      ColumnMatrixFromVector(y_dims), 0, trans_y);
Q
QingshuChen 已提交
40

T
taixiurong 已提交
41 42 43 44 45
  if (x_dims.size() == 3 && y_dims.size() <= 2) {
    // if transpose_X is true, the transpose cost much time
    if (!trans_x) {
      mat_dim_a.height_ *= mat_dim_a.batch_size_;
      mat_dim_a.batch_size_ = 0;
Q
QingshuChen 已提交
46
    } else {
T
taixiurong 已提交
47 48
      mat_dim_b.batch_size_ = mat_dim_a.batch_size_;
      mat_dim_b.height_ = mat_dim_b.height_ / mat_dim_b.batch_size_;
Q
QingshuChen 已提交
49 50 51
    }
  }

T
taixiurong 已提交
52 53 54
  if (mat_dim_a.width_ == mat_dim_b.height_) {
    if (mat_dim_a.batch_size_ == 0 && mat_dim_b.batch_size_ == 1) {
      mat_dim_a.batch_size_ = mat_dim_b.batch_size_ = 0;
Q
QingshuChen 已提交
55
    }
T
taixiurong 已提交
56 57
    if (mat_dim_a.batch_size_ == 1 && mat_dim_b.batch_size_ == 0) {
      mat_dim_a.batch_size_ = mat_dim_b.batch_size_ = 0;
Q
QingshuChen 已提交
58 59 60
    }
  }

T
taixiurong 已提交
61 62
  PADDLE_ENFORCE_EQ(mat_dim_a.width_, mat_dim_b.height_,
                    platform::errors::InvalidArgument(
63 64 65 66
                        "Shape mistake in matmul_v2_op xdims = %s ydims = %s "
                        "x_trans = %d y_trans = %d",
                        x_dims.to_str(), y_dims.to_str(), mat_dim_a.trans_,
                        mat_dim_b.trans_));
T
taixiurong 已提交
67 68
  PADDLE_ENFORCE_EQ(mat_dim_a.batch_size_, mat_dim_b.batch_size_,
                    platform::errors::InvalidArgument(
69 70 71 72
                        "Shape mistake in matmul_v2_op xdims = %s ydims = %s "
                        "x_trans = %d y_trans = %d",
                        x_dims.to_str(), y_dims.to_str(), mat_dim_a.trans_,
                        mat_dim_b.trans_));
T
taixiurong 已提交
73

74
  T* data_c = out->data<T>();
T
taixiurong 已提交
75 76 77 78
  int m = mat_dim_a.height_;
  int n = mat_dim_b.width_;
  int k = mat_dim_a.width_;
  int batch_size = mat_dim_a.batch_size_;
79 80 81
  int ldx = mat_dim_a.trans_ ? m : k;
  int ldy = mat_dim_b.trans_ ? k : n;
  int ldout = n;
82 83
  if (batch_size <= 1) {
    int r = 0;
84
    r = xpu_fc_wrapper<XPUType, FCT>(
T
taixiurong 已提交
85 86 87
        dev_ctx.x_context(), reinterpret_cast<const XPUType*>(x->data<T>()),
        reinterpret_cast<const XPUType*>(y->data<T>()),
        reinterpret_cast<XPUType*>(data_c), m, n, k, mat_dim_a.trans_,
88 89
        mat_dim_b.trans_, nullptr, nullptr, nullptr, ldx, ldy, ldout, 1.0, 0,
        nullptr, xpu::Activation_t::LINEAR);
90 91 92
    PADDLE_ENFORCE_EQ(
        r, XPU_SUCCESS,
        platform::errors::External(
93
            "XPU fc kernel return wrong value[%d %s] , m = %d, n = "
94 95 96
            "%d, "
            "k = %d, a_tr = %d, b_tr = %d",
            r, XPUAPIErrorMsg[r], m, n, k, mat_dim_a.trans_, mat_dim_b.trans_));
Q
QingshuChen 已提交
97
  } else {
98
    // batch matmul
T
taixiurong 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
    int r = xpu::fc_batched<XPUType, XPUType, XPUType, FCT>(
        dev_ctx.x_context(),                             // Context* ctx,
        batch_size,                                      // int batch_size,
        mat_dim_a.trans_,                                // bool x_trans,
        mat_dim_b.trans_,                                // bool w_trans,
        m,                                               // int m,
        n,                                               // int n,
        k,                                               // int k,
        1.0,                                             // float alpha,
        reinterpret_cast<const XPUType*>(x->data<T>()),  // const TX* x,
        mat_dim_a.stride_,                               // int stride_a,
        reinterpret_cast<const XPUType*>(y->data<T>()),  // const TW* w,
        mat_dim_b.stride_,                               // int stride_b,
        0.0,                                             // float beta,
        reinterpret_cast<XPUType*>(data_c),              // TY* y,
        m * n,                                           // int stride_c,
        nullptr,   // const float* x_maxptr,
        nullptr);  // const float* w_maxptr
117

118 119 120 121
    PADDLE_ENFORCE_EQ(r, XPU_SUCCESS,
                      platform::errors::External(
                          "XPU fc_batched kernel return wrong value[%d %s]", r,
                          XPUAPIErrorMsg[r]));
Q
QingshuChen 已提交
122 123 124 125 126 127 128
  }
}

template <typename T>
class MatMulV2XPUKernel : public framework::OpKernel<T> {
 public:
  void Compute(const paddle::framework::ExecutionContext& ctx) const override {
T
taixiurong 已提交
129 130 131
    auto* x = ctx.Input<Tensor>("X");
    auto* y = ctx.Input<Tensor>("Y");
    auto* out = ctx.Output<Tensor>("Out");
Q
QingshuChen 已提交
132 133
    bool trans_x = ctx.Attr<bool>("trans_x");
    bool trans_y = ctx.Attr<bool>("trans_y");
T
taixiurong 已提交
134
    out->mutable_data<T>(ctx.GetPlace());
T
taixiurong 已提交
135
    if (std::is_same<paddle::platform::float16, T>::value) {
T
taixiurong 已提交
136
      MatMulXPUFunction<T, int16_t>(x, y, out, trans_x, trans_y, ctx);
T
taixiurong 已提交
137
    } else {
138
      if (std::getenv("XPU_PADDLE_FC_INT32") != nullptr) {
T
taixiurong 已提交
139
        MatMulXPUFunction<T, int32_t>(x, y, out, trans_x, trans_y, ctx);
140 141
      } else if (std::getenv("XPU_PADDLE_FC_LOCAL_INT16") != nullptr) {
        MatMulXPUFunction<T, float>(x, y, out, trans_x, trans_y, ctx);
T
taixiurong 已提交
142 143 144
      } else {
        MatMulXPUFunction<T, int16_t>(x, y, out, trans_x, trans_y, ctx);
      }
T
taixiurong 已提交
145
    }
Q
QingshuChen 已提交
146 147 148
  }
};

T
taixiurong 已提交
149 150 151
template <typename DeviceContext, typename T>
static framework::Tensor XPUFoldHeadAndLastDims(
    const DeviceContext& context, const framework::Tensor& input) {
T
taixiurong 已提交
152
  using XPUType = typename XPUTypeTrait<T>::Type;
T
taixiurong 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165
  auto in_dims = input.dims();
  if (in_dims.size() != 3) {
    return input;
  }

  framework::Tensor output;
  output.Resize({in_dims[1], in_dims[0], in_dims[2]});
  output.mutable_data<T>(context.GetPlace());
  std::vector<int> in_shape_host = {static_cast<int>(in_dims[0]),
                                    static_cast<int>(in_dims[1]),
                                    static_cast<int>(in_dims[2])};
  std::vector<int> axis_host = {1, 0, 2};

T
taixiurong 已提交
166 167 168
  int r = xpu::transpose(
      context.x_context(), reinterpret_cast<const XPUType*>(input.data<T>()),
      reinterpret_cast<XPUType*>(output.data<T>()), in_shape_host, axis_host);
T
taixiurong 已提交
169 170 171 172 173 174 175 176 177
  PADDLE_ENFORCE_EQ(r, XPU_SUCCESS,
                    platform::errors::External(
                        "XPU transpose kernel return wrong value[%d %s]", r,
                        XPUAPIErrorMsg[r]));
  output.Resize({in_dims[1], in_dims[0] * in_dims[2]});

  return output;
}

Q
QingshuChen 已提交
178 179 180
template <typename T>
class MatMulV2XPUGradKernel : public framework::OpKernel<T> {
 public:
T
taixiurong 已提交
181
  void MatMul(const framework::ExecutionContext& ctx,
Q
QingshuChen 已提交
182 183 184
              const framework::Tensor& a, bool trans_a,
              const framework::Tensor& b, bool trans_b,
              framework::Tensor* out) const {
T
taixiurong 已提交
185
    out->mutable_data<T>(ctx.GetPlace());
T
taixiurong 已提交
186
    if (std::is_same<paddle::platform::float16, T>::value) {
T
taixiurong 已提交
187
      MatMulXPUFunction<T, int16_t>(&a, &b, out, trans_a, trans_b, ctx);
T
taixiurong 已提交
188
    } else {
189
      if (std::getenv("XPU_PADDLE_FC_INT32") != nullptr) {
T
taixiurong 已提交
190
        MatMulXPUFunction<T, int32_t>(&a, &b, out, trans_a, trans_b, ctx);
191 192
      } else if (std::getenv("XPU_PADDLE_FC_LOCAL_INT16") != nullptr) {
        MatMulXPUFunction<T, float>(&a, &b, out, trans_a, trans_b, ctx);
T
taixiurong 已提交
193 194 195
      } else {
        MatMulXPUFunction<T, int16_t>(&a, &b, out, trans_a, trans_b, ctx);
      }
T
taixiurong 已提交
196
    }
Q
QingshuChen 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209
  }

  void CalcInputGrad(const framework::ExecutionContext& context,
                     const framework::Tensor& a, bool trans_a,
                     bool is_fold_init_dims_a, const framework::Tensor& b,
                     bool trans_b, bool is_fold_init_dims_b,
                     framework::Tensor* out) const {
    if (out == nullptr) return;
    bool need_combine = (a.dims().size() == 3 || b.dims().size() == 3) &&
                        out->dims().size() == 2;
    if (!need_combine) {
      MatMul(context, a, trans_a, b, trans_b, out);
    } else {
T
taixiurong 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223
      auto& dev_ctx =
          context.template device_context<paddle::platform::XPUDeviceContext>();
      MatMul(
          context,
          is_fold_init_dims_a
              ? FoldInitDims(a)
              : XPUFoldHeadAndLastDims<paddle::platform::XPUDeviceContext, T>(
                    dev_ctx, a),
          trans_a,
          is_fold_init_dims_b
              ? FoldInitDims(b)
              : XPUFoldHeadAndLastDims<paddle::platform::XPUDeviceContext, T>(
                    dev_ctx, b),
          trans_b, out);
Q
QingshuChen 已提交
224 225 226
    }
  }

T
taixiurong 已提交
227 228 229 230 231 232 233 234 235 236 237
  void Compute(const framework::ExecutionContext& context) const override {
    bool transpose_x = context.Attr<bool>("trans_x");
    bool transpose_y = context.Attr<bool>("trans_y");

    auto x = *context.Input<framework::Tensor>("X");
    auto y = *context.Input<framework::Tensor>("Y");
    auto dout =
        *context.Input<framework::Tensor>(framework::GradVarName("Out"));
    auto* dx = context.Output<framework::Tensor>(framework::GradVarName("X"));
    auto* dy = context.Output<framework::Tensor>(framework::GradVarName("Y"));
    ReshapeXYOutIntoMatrixSequence(&x, &y, &dout, transpose_x, transpose_y);
238

T
taixiurong 已提交
239 240 241 242 243
    framework::DDim dx_dims;
    if (dx) {
      dx_dims = dx->dims();
      if (dx_dims != x.dims()) {
        dx->Resize(x.dims());
Q
QingshuChen 已提交
244
      }
T
taixiurong 已提交
245 246 247 248 249 250 251
    }

    framework::DDim dy_dims;
    if (dy) {
      dy_dims = dy->dims();
      if (dy_dims != y.dims()) {
        dy->Resize(y.dims());
Q
QingshuChen 已提交
252 253 254
      }
    }

T
taixiurong 已提交
255 256 257 258 259 260 261 262 263
    if (transpose_x && transpose_y) {
      CalcInputGrad(context, y, true, true, dout, true, false, dx);
      CalcInputGrad(context, dout, true, true, x, true, false, dy);
    } else if (transpose_x) {
      CalcInputGrad(context, y, false, false, dout, true, false, dx);
      CalcInputGrad(context, x, false, false, dout, false, true, dy);
    } else if (transpose_y) {
      CalcInputGrad(context, dout, false, false, y, false, true, dx);
      CalcInputGrad(context, dout, true, true, x, false, true, dy);
Q
QingshuChen 已提交
264
    } else {
T
taixiurong 已提交
265 266
      CalcInputGrad(context, dout, false, false, y, true, false, dx);
      CalcInputGrad(context, x, true, true, dout, false, true, dy);
Q
QingshuChen 已提交
267 268
    }

T
taixiurong 已提交
269 270 271
    if (dx) {
      if (dx_dims != x.dims()) {
        dx->Resize(dx_dims);
Q
QingshuChen 已提交
272
      }
T
taixiurong 已提交
273
    }
Q
QingshuChen 已提交
274

T
taixiurong 已提交
275 276 277
    if (dy) {
      if (dy_dims != y.dims()) {
        dy->Resize(dy_dims);
Q
QingshuChen 已提交
278 279 280 281 282 283 284 285 286
      }
    }
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
T
taixiurong 已提交
287 288 289 290 291
namespace plat = paddle::platform;
REGISTER_OP_XPU_KERNEL(matmul_v2, ops::MatMulV2XPUKernel<float>,
                       ops::MatMulV2XPUKernel<plat::float16>);
REGISTER_OP_XPU_KERNEL(matmul_v2_grad, ops::MatMulV2XPUGradKernel<float>,
                       ops::MatMulV2XPUGradKernel<plat::float16>);
Q
QingshuChen 已提交
292 293

#endif