// Copyright (c) 2019 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 "lite/operators/matmul_op.h" #include "lite/core/op_registry.h" namespace paddle { namespace lite { namespace operators { bool MatMulOpLite::CheckShape() const { CHECK_OR_FALSE(param_.X); CHECK_OR_FALSE(param_.Y); CHECK_OR_FALSE(param_.Out); return true; } bool MatMulOpLite::InferShape() const { const auto x_dims = param_.X->dims(); const auto y_dims = param_.Y->dims(); bool x_transpose = param_.transpose_X; bool y_transpose = param_.transpose_Y; std::vector dim_out_vec; if (x_dims.size() > 2 && y_dims.size() >= 2) { // x: [B, ..., M, K], y: [B, ..., K, N], out: [B, ..., M, N] // x: [B, M, K], y: [K, N], out: [B, M, N] CHECK_EQ(x_dims[x_dims.size() - 1], y_dims[y_dims.size() - 2]) << "not supported x_dims(" << x_dims << ") and y_dims(" << y_dims << ")"; dim_out_vec.resize(x_dims.size()); for (size_t i = 0; i < x_dims.size() - 1; ++i) { dim_out_vec[i] = x_dims[i]; } dim_out_vec[x_dims.size() - 1] = y_dims[y_dims.size() - 1]; } else if (x_dims.size() == 2 && y_dims.size() == 2) { // x: [M, K], y: [K, N], out: [M, N] // x: [M, K], y: [K, N], out: [M, N] if (!x_transpose && !y_transpose) { CHECK_EQ(x_dims[1], y_dims[0]) << "not supported x_dims(" << x_dims << ") and y_dims(" << y_dims << "), x_transpose is " << x_transpose << ", y_transpose is " << y_transpose; } else if (!x_transpose && y_transpose) { CHECK_EQ(x_dims[1], y_dims[1]) << "not supported x_dims(" << x_dims << ") and y_dims(" << y_dims << "), x_transpose is " << x_transpose << ", y_transpose is " << y_transpose; } else if (x_transpose && !y_transpose) { CHECK_EQ(x_dims[0], y_dims[0]) << "not supported x_dims(" << x_dims << ") and y_dims(" << y_dims << "), x_transpose is " << x_transpose << ", y_transpose is " << y_transpose; } else { CHECK_EQ(x_dims[0], y_dims[1]) << "not supported x_dims(" << x_dims << ") and y_dims(" << y_dims << "), x_transpose is " << x_transpose << ", y_transpose is " << y_transpose; } dim_out_vec.resize(x_dims.size()); if (x_transpose) { dim_out_vec[0] = x_dims[1]; } else { dim_out_vec[0] = x_dims[0]; } if (y_transpose) { dim_out_vec[1] = y_dims[0]; } else { dim_out_vec[1] = y_dims[1]; } } else if (x_dims.size() > 2 && y_dims.size() == 1) { // x: [B, M, K], y: [K], out: [B, M] CHECK_EQ(x_dims[x_dims.size() - 1], y_dims[0]) << "not supported x_dims(" << x_dims << ") and y_dims(" << y_dims << ")"; dim_out_vec.resize(x_dims.size() - 1); for (size_t i = 0; i < dim_out_vec.size(); ++i) { dim_out_vec[i] = x_dims[i]; } } else if (x_dims.size() == 1 && y_dims.size() == 1) { // todo // x: [K], y: [K], out: [1] if (x_dims[0] == y_dims[0] && x_transpose == false && y_transpose == false) { dim_out_vec.resize(1); dim_out_vec[0] = 1; } // x: [M], y: [N], x_transpose: true, y_transpose: true, out: [M, N] if (x_transpose == true && y_transpose == true) { dim_out_vec.resize(2); dim_out_vec[0] = x_dims[0]; dim_out_vec[1] = y_dims[0]; } } else { LOG(FATAL) << "not supported x_dims(" << x_dims << ") and y_dims(" << y_dims << ")"; } DDim dim_out(dim_out_vec); param_.Out->Resize(dim_out); return true; } bool MatMulOpLite::AttachImpl(const cpp::OpDesc &op_desc, lite::Scope *scope) { CHECK(!op_desc.Input("X").empty()); CHECK(!op_desc.Input("Y").empty()); CHECK(!op_desc.Output("Out").empty()); auto X = op_desc.Input("X").front(); auto Y = op_desc.Input("Y").front(); auto Out = op_desc.Output("Out").front(); param_.X = GetVar(scope, X); param_.Y = GetVar(scope, Y); param_.Out = GetMutableVar(scope, Out); param_.transpose_X = op_desc.GetAttr("transpose_X"); param_.transpose_Y = op_desc.GetAttr("transpose_Y"); param_.alpha = op_desc.GetAttr("alpha"); return true; } } // namespace operators } // namespace lite } // namespace paddle REGISTER_LITE_OP(matmul, paddle::lite::operators::MatMulOpLite);