// 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/kernels/arm/fc_compute.h" #include #include "lite/api/paddle_place.h" #include "lite/arm/math/funcs.h" #include "lite/arm/math/gemm_prepacked_int8.h" #include "lite/arm/math/gemv_arm_int8.h" #include "lite/core/op_registry.h" #include "lite/core/type_system.h" namespace paddle { namespace lite { namespace kernels { namespace arm { void FcCompute::PrepareForRun() { auto& param = this->Param(); auto x_dims = param.input->dims(); auto w_dims = param.w->dims(); auto& ctx = this->ctx_->template As(); CHECK_GE(x_dims.size(), 2UL); CHECK_EQ(w_dims.size(), 2UL); CHECK_EQ(param.output->dims().size(), 2UL); m_ = x_dims.Slice(0, param.in_num_col_dims).production(); k_ = x_dims.Slice(param.in_num_col_dims, x_dims.size()).production(); CHECK_EQ(k_, w_dims[0]); n_ = w_dims[1]; CHECK_EQ(k_, static_cast(w_dims[0])); if (m_ == 1) { if (!transed_weight_) { transed_weight_ = new Tensor; } transed_weight_->Resize({n_, k_}); const auto* w_data = param.w->data(); auto* t_data = transed_weight_->mutable_data(); int i = 0; for (int nn = 0; nn < n_; ++nn) { for (int kk = 0; kk < k_; ++kk) { t_data[i++] = w_data[kk * n_ + nn]; } } } } void FcCompute::Run() { auto& param = this->Param(); const auto* i_data = param.input->data(); const auto* w_data = param.w->data(); const auto* b_data = param.bias ? param.bias->data() : nullptr; auto* o_data = param.output->mutable_data(); auto& ctx = this->ctx_->template As(); if (m_ > 1) { lite::arm::math::sgemm(false, false, m_, n_, k_, 1.f, i_data, k_, w_data, n_, 0.f, o_data, n_, b_data, false, false, &ctx); if (param.bias) { CHECK_EQ(param.bias->numel(), n_); lite::arm::math::fill_bias_fc(o_data, b_data, m_, n_); } } else { CHECK(transed_weight_); const auto* t_data = transed_weight_->data(); lite::arm::math::sgemv(t_data, i_data, o_data, false, n_, k_, b_data != nullptr, b_data, false); } } template void FcComputeInt8::PrepareForRun() { auto& param = this->Param(); auto x_dims = param.input->dims(); auto w_dims = param.w->dims(); auto& ctx = this->ctx_->template As(); if (!tmp_int32_out_) { tmp_int32_out_ = new Tensor; tmp_int32_out_->Resize(param.output->dims()); } CHECK_GE(x_dims.size(), 2UL); CHECK_EQ(w_dims.size(), 2UL); CHECK_EQ(param.output->dims().size(), 2UL); this->m_ = x_dims.Slice(0, param.in_num_col_dims).production(); this->k_ = x_dims.Slice(param.in_num_col_dims, x_dims.size()).production(); this->n_ = w_dims[1]; CHECK_EQ(k_, static_cast(w_dims[0])); if (this->m_ == 1) { if (!this->transed_weight_) { this->transed_weight_ = new Tensor; } this->transed_weight_->Resize({this->n_, this->k_}); const auto* w_data = param.w->template data(); auto* t_data = this->transed_weight_->template mutable_data(); int i = 0; for (int nn = 0; nn < this->n_; ++nn) { for (int kk = 0; kk < this->k_; ++kk) { t_data[i++] = w_data[kk * this->n_ + nn]; } } } if (this->m_ > 1) { int hblock = lite::arm::math::get_hblock(ctx.arch()); int m_round = hblock * ((this->m_ + hblock - 1) / hblock); ctx.ExtendWorkspace(m_round * this->k_); } bool with_bias = param.bias; if (with_bias) { Tensor temp_tensor; temp_tensor.CopyDataFrom(*param.bias); lite::arm::math::trans_fp32_bias_to_int32_basic( &temp_tensor, param.bias, param.input_scale, param.weight_scale); } } template void FcComputeInt8::Run() { auto& param = this->Param(); const auto* i_data = param.input->template data(); const auto* w_data = param.w->template data(); const auto* b_data = param.bias ? param.bias->template data() : nullptr; int* o_data = nullptr; auto& ctx = this->ctx_->template As(); o_data = this->tmp_int32_out_->template mutable_data(); if (m_ > 1) { int8_t* packed_in = static_cast(ctx.template workspace_data()) + ctx.llc_size() / sizeof(int8_t); lite::arm::math::prepackA_int8( packed_in, i_data, k_, 0, m_, 0, k_, false, &ctx); lite::arm::math::gemm_prepack_int8(packed_in, w_data, b_data, o_data, m_, n_, k_, false, false, false, nullptr, &ctx); if (param.bias) { CHECK_EQ(param.bias->numel(), n_); lite::arm::math::fill_bias_fc(o_data, b_data, m_, n_); } } else { CHECK(transed_weight_); const auto* t_data = transed_weight_->template data(); lite::arm::math::gemv_int8(t_data, i_data, o_data, false, n_, k_, nullptr, b_data != nullptr, b_data, false); } float i_scale = param.input_scale; std::vector weight_scale = param.weight_scale; if (Ptype_out == PRECISION(kInt8)) { float o_scale = param.output_scale; param.output->template mutable_data(); lite::arm::math::trans_tensor_dtype( tmp_int32_out_, param.output, i_scale, o_scale, weight_scale); } else if (Ptype_out == PRECISION(kFloat)) { param.output->template mutable_data(); lite::arm::math::trans_tensor_dtype( tmp_int32_out_, param.output, i_scale, 1.f, weight_scale); } else { LOG(ERROR) << "unsupported precision type!!"; } } } // namespace arm } // namespace kernels } // namespace lite } // namespace paddle REGISTER_LITE_KERNEL( fc, kARM, kFloat, kNCHW, paddle::lite::kernels::arm::FcCompute, def) .BindInput("Input", {LiteType::GetTensorTy(TARGET(kARM))}) .BindInput("Bias", {LiteType::GetTensorTy(TARGET(kARM))}) .BindInput("W", {LiteType::GetTensorTy(TARGET(kARM))}) .BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM))}) .Finalize(); REGISTER_LITE_KERNEL( fc, kARM, kInt8, kNCHW, paddle::lite::kernels::arm::FcComputeInt8, int8out) .BindInput("Input", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt8))}) .BindInput("Bias", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))}) .BindInput("W", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt8))}) .BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt8))}) .Finalize(); REGISTER_LITE_KERNEL( fc, kARM, kInt8, kNCHW, paddle::lite::kernels::arm::FcComputeInt8, fp32out) .BindInput("Input", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt8))}) .BindInput("Bias", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))}) .BindInput("W", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt8))}) .BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kFloat))}) .Finalize();