/* Copyright (c) 2017 PaddlePaddle Authors. All Rights Reserve. 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 "paddle/operators/matmul_op.h" namespace paddle { namespace operators { using framework::Tensor; class MatMulOp : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; protected: void InferShape(framework::InferShapeContext* context) const override { PADDLE_ENFORCE(context->HasInput("X"), "Input(X) of MatMulOp should not be null."); PADDLE_ENFORCE(context->HasInput("Y"), "Input(Y) of MatMulOp should not be null."); PADDLE_ENFORCE(context->HasOutput("Out"), "Output(Out) of MatMulOp should not be null."); auto dim_x = context->GetInputDim("X"); auto dim_y = context->GetInputDim("Y"); bool transpose_x = context->Attrs().Get("transpose_X"); bool transpose_y = context->Attrs().Get("transpose_Y"); PADDLE_ENFORCE_GE(dim_x.size(), 1, "Input tensor X must be at least 1-dimensional."); PADDLE_ENFORCE_GE(dim_y.size(), 1, "Input tensor Y must be at least 1-dimensional."); PADDLE_ENFORCE_LE(dim_x.size(), 3, "Input tensor X must be at most 3-dimensional."); PADDLE_ENFORCE_LE(dim_y.size(), 3, "Input tensor Y must be at most 3-dimensional."); int M = 0, N = 0, KX = 0, KY = 0, batchCountX = 0, batchCountY = 0; bool remove_initial_dim = false, remove_final_dim = false; switch (dim_x.size()) { case 1: if (transpose_x) { M = dim_x[0]; KX = 1; } else { M = 1; KX = dim_x[0]; remove_initial_dim = true; } break; case 2: M = transpose_x ? dim_x[1] : dim_x[0]; KX = transpose_x ? dim_x[0] : dim_x[1]; break; case 3: batchCountX = dim_x[0]; M = transpose_x ? dim_x[2] : dim_x[1]; KX = transpose_x ? dim_x[1] : dim_x[2]; break; default: assert(false); } switch (dim_y.size()) { case 1: if (transpose_y) { N = dim_y[0]; KY = 1; } else { N = 1; KY = dim_y[0]; remove_final_dim = true; } break; case 2: KY = transpose_y ? dim_y[1] : dim_y[0]; N = transpose_y ? dim_y[0] : dim_y[1]; break; case 3: batchCountY = dim_y[0]; KY = transpose_y ? dim_y[2] : dim_y[1]; N = transpose_y ? dim_y[1] : dim_y[2]; break; default: assert(false); } PADDLE_ENFORCE_EQ( KX, KY, "First matrix's width must be equal with second matrix's height."); if (batchCountX && batchCountY) { PADDLE_ENFORCE_EQ( batchCountX, batchCountY, "When Input(X) and Input(Y) are both three dimensional, they " "must have the same batch dimension."); } int batchCount = std::max(batchCountX, batchCountY); std::vector dim_out; if (batchCount) { dim_out.push_back(batchCount); } if (!remove_initial_dim) { dim_out.push_back(M); } if (!remove_final_dim) { dim_out.push_back(N); } if (dim_out.size() == 0) { // We don't support 0-dimensional Tensors (scalars), so instead // treat the output as a Tensor of shape (1, ) in this case. dim_out.push_back(1); } context->SetOutputDim("Out", framework::make_ddim(dim_out)); context->ShareLoD("X", /*->*/ "Out"); } }; class MatMulOpMaker : public framework::OpProtoAndCheckerMaker { public: MatMulOpMaker(framework::OpProto* proto, framework::OpAttrChecker* op_checker) : OpProtoAndCheckerMaker(proto, op_checker) { AddInput("X", "The first input of MatMul op"); AddInput("Y", "The second input of MatMul op"); AddOutput("Out", "The output of MatMul op"); AddAttr("transpose_X", R"DOC(If true, use the transpose of `X`. )DOC") .SetDefault(false); AddAttr("transpose_Y", R"DOC(If true, use the transpose of `Y`. )DOC") .SetDefault(false); AddComment(R"DOC( The MatMul operator is used to perform (batched) matrix multiplication over the last two dimensions of the input tensors `X` and `Y`. If a transpose flag is specified, the last two dimensions of the tensor are transposed. If the tensor is rank-1 of shape [D], then for `X` it is treated as [1, D] in nontransposed form and as [D, 1] in transposed form, whereas for `Y` it is the opposite: It is treated as [D, 1] in nontransposed form and as [1, D] in transposed form. Examples without transpose: - X: [K], Y: [K] => Out: [1] - X: [K], Y: [K, N] => Out: [N] - X: [B, M, K], Y: [K] => Out: [B, M] - X: [M, K], Y: [B, K, N] => Out: [B, M, N] - X: [B, M, K], Y: [B, K, N] => Out: [B, M, N] The behavior is designed to be similar to the `numpy.matmul` function. The differences are: - Currently only rank 1 to rank 3 input tensors are supported. - We add `transpose_X` and `transpose_Y` flags. Both the input `X` and `Y` can carry the LoD (Level of Details) information, or not. But the output only shares the LoD with input `X`. )DOC"); } }; class MatMulOpGrad : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; protected: void InferShape(framework::InferShapeContext* context) const override { PADDLE_ENFORCE(context->HasInput("X"), "Input(X) should not be null"); PADDLE_ENFORCE(context->HasInput("Y"), "Input(Y) should not be null"); PADDLE_ENFORCE(context->HasInput(framework::GradVarName("Out")), "Input(Out@GRAD) should not be null"); auto x_dims = context->GetInputDim("X"); auto y_dims = context->GetInputDim("Y"); auto x_grad_name = framework::GradVarName("X"); auto y_grad_name = framework::GradVarName("Y"); if (context->HasOutput(x_grad_name)) { context->SetOutputDim(x_grad_name, x_dims); } if (context->HasOutput(y_grad_name)) { context->SetOutputDim(y_grad_name, y_dims); } } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OP(matmul, ops::MatMulOp, ops::MatMulOpMaker, matmul_grad, ops::MatMulOpGrad); REGISTER_OP_CPU_KERNEL(matmul, ops::MatMulKernel); REGISTER_OP_CPU_KERNEL( matmul_grad, ops::MatMulGradKernel);