/* 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 #include #include "paddle/fluid/operators/mul_op.h" #include "paddle/fluid/platform/device/npu/npu_op_runner.h" namespace paddle { namespace operators { template class MulNPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* x = ctx.Input("X"); auto* y = ctx.Input("Y"); auto* out = ctx.Output("Out"); int x_num_col_dims = ctx.Attr("x_num_col_dims"); int y_num_col_dims = ctx.Attr("y_num_col_dims"); auto stream = ctx.template device_context() .stream(); if (x_num_col_dims == 1 && y_num_col_dims == 1) { if (x->dims().size() == 2 && y->dims().size() == 2) { out->mutable_data(ctx.GetPlace()); const auto& runner = NpuOpRunner("MatMul", {*x, *y}, {*out}, {{"transpose_x1", false}, {"transpose_x2", false}}); runner.Run(stream); } else if (x->dims().size() >= 3 && y->dims().size() == 2) { // reshape Tensor tmp_x(x->type()); int64_t sec_dim = x->dims()[1]; for (auto i = 2; i < x->dims().size(); i++) { sec_dim *= x->dims()[i]; } int64_t first_dim = x->dims()[0]; tmp_x.ShareDataWith(*x); tmp_x.Resize(framework::make_ddim({first_dim, sec_dim})); out->mutable_data(ctx.GetPlace()); // matmul const auto& runner = NpuOpRunner("MatMul", {tmp_x, *y}, {*out}, {{"transpose_x1", false}, {"transpose_x2", false}}); runner.Run(stream); } else { PADDLE_THROW( platform::errors::InvalidArgument("npu error: not support dims")); } // 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] PADDLE_ENFORCE_EQ(x_num_col_dims, 2, platform::errors::InvalidArgument( "now only support x_num_col_dims == 2: but got %d", x_num_col_dims)); if (x->type() == framework::proto::VarType::FP16 && y->type() == framework::proto::VarType::FP16) { // NOTE: When the dim of the input and output shapes is inconsistent, // (Boradcast) BatchMatMul NPU OP only support FP16. out->mutable_data(ctx.GetPlace()); const auto& runner = NpuOpRunner("BatchMatMul", {*x, *y}, {*out}, {{"adj_x1", false}, {"adj_x2", false}}); auto stream = ctx.template device_context() .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); tmp_x.Resize(framework::make_ddim({first_dim, sec_dim})); // matmul [6,4] , [4, 5] => [6, 5] out->mutable_data(ctx.GetPlace()); Tensor tmp_out(x->type()); tmp_out.ShareDataWith(*out); tmp_out.Resize(framework::make_ddim({first_dim, y->dims()[1]})); const auto& runner_matmul = NpuOpRunner("MatMul", {tmp_x, *y}, {tmp_out}, {{"transpose_x1", false}, {"transpose_x2", false}}); runner_matmul.Run(stream); } } } }; template class MulGradNPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* x = ctx.Input("X"); auto* y = ctx.Input("Y"); auto* dout = ctx.Input(framework::GradVarName("Out")); auto* dx = ctx.Output(framework::GradVarName("X")); auto* dy = ctx.Output(framework::GradVarName("Y")); int x_num_col_dims = ctx.Attr("x_num_col_dims"); int y_num_col_dims = ctx.Attr("y_num_col_dims"); auto stream = ctx.template device_context() .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(ctx.GetPlace()); const auto& runner_dx = NpuOpRunner("MatMul", {*dout, *y}, {*dx}, {{"transpose_x1", false}, {"transpose_x2", true}}); runner_dx.Run(stream); } if (dy) { dy->mutable_data(ctx.GetPlace()); const auto& runner_dy = NpuOpRunner("MatMul", {*x, *dout}, {*dy}, {{"transpose_x1", true}, {"transpose_x2", false}}); runner_dy.Run(stream); } } else if (x->dims().size() >= 3 && y->dims().size() == 2) { // flatten => x.shape=[6, 4] // matmul if (dx) { // matmul [2, 5] * [12, 5] => [2, 12] dx->mutable_data(ctx.GetPlace()); Tensor tmp_dx(x->type()); tmp_dx.ShareDataWith(*dx); tmp_dx.Resize(framework::make_ddim({dout->dims()[0], y->dims()[0]})); const auto& runner_matmul = NpuOpRunner("MatMul", {*dout, *y}, {tmp_dx}, {{"transpose_x1", false}, {"transpose_x2", true}}); runner_matmul.Run(stream); } if (dy) { // flatten Tensor tmp_x(x->type()); int64_t sec_dim = x->dims()[1]; for (auto i = 2; i < x->dims().size(); i++) { sec_dim *= x->dims()[i]; } int64_t first_dim = x->dims()[0]; tmp_x.ShareDataWith(*x); tmp_x.Resize(framework::make_ddim({first_dim, sec_dim})); dy->mutable_data(ctx.GetPlace()); const auto& runner_dy = NpuOpRunner("MatMul", {tmp_x, *dout}, {*dy}, {{"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] PADDLE_ENFORCE_EQ(x_num_col_dims, 2, 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]; tmp_dout.ShareDataWith(*dout); tmp_dout.Resize(framework::make_ddim({dout_first_dim, dout_sec_dim})); if (dx) { // tmp_dout * y [2, 3, 5] * [4,5] => [2, 3, 4] if (dout->type() == framework::proto::VarType::FP16 && y->type() == framework::proto::VarType::FP16) { // NOTE: When the dim of the input and output shapes is inconsistent, // (Boradcast) BatchMatMul NPU OP only support FP16. dx->mutable_data(ctx.GetPlace()); const auto& runner = NpuOpRunner("BatchMatMul", {*dout, *y}, {*dx}, {{"adj_x1", false}, {"adj_x2", true}}); auto stream = ctx.template device_context() .stream(); runner.Run(stream); } else { dx->mutable_data(ctx.GetPlace()); Tensor tmp_dx(x->type()); tmp_dx.ShareDataWith(*dx); tmp_dx.Resize(framework::make_ddim({dout_first_dim, y->dims()[0]})); const auto& runner_matmul = NpuOpRunner("MatMul", {tmp_dout, *y}, {tmp_dx}, {{"transpose_x1", false}, {"transpose_x2", true}}); runner_matmul.Run(stream); } } 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]; tmp_x.ShareDataWith(*x); tmp_x.Resize(framework::make_ddim({first_dim, sec_dim})); // mamtul [6,4] [6,5] =>[4,5] dy->mutable_data(ctx.GetPlace()); const auto& runner_dy = NpuOpRunner("MatMul", {tmp_x, tmp_dout}, {*dy}, {{"transpose_x1", true}, {"transpose_x2", false}}); runner_dy.Run(stream); } } } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OP_NPU_KERNEL( mul, ops::MulNPUKernel, ops::MulNPUKernel); REGISTER_OP_NPU_KERNEL( mul_grad, ops::MulGradNPUKernel, ops::MulGradNPUKernel);