/* 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. */ #pragma once #include #include "lite/backends/fpga/KD/pe.hpp" #include "lite/backends/fpga/KD/pe_params.hpp" #include "lite/backends/fpga/KD/pes/conv_pe.hpp" #include "lite/backends/fpga/KD/pes/conv_process.hpp" namespace paddle { namespace zynqmp { class FullyConnectedPE : public PE { public: bool init() { Tensor* output = param_.output; output->setAligned(true); output->setDataLocation(Device); return true; } void apply() { ConvParam& convParam_ = convPE_.param(); Tensor* input = param_.input; convParam_.input = param_.input; num_ = param_.input->shape().num(); convParam_.output = param_.output; convParam_.groups = 1; convParam_.strides = {1, 1}; convParam_.paddings = {0, 0}; convParam_.kernelSize = {input->shape().width(), input->shape().height()}; convParam_.dilations = {1, 1}; int num = param_.filter->shape().channel(); int chw = param_.filter->shape().num(); int height = param_.input->shape().height(); int width = param_.input->shape().width(); int filter_channel = chw / height / width; int channel = param_.output->shape().channel(); Shape shape(NCHW, {num, filter_channel, height, width}); Tensor* conv_filter = new Tensor(); float* new_filter_data = conv_filter->mutableData(FP32, shape); float* filter_data = param_.filter->data(); for (int i = 0; i < num; i++) { for (int j = 0; j < chw; j++) { float scale = filter_data[j * num + i]; new_filter_data[i * chw + j] = scale; } } conv_filter->flush(); convParam_.filter = conv_filter; Shape sb_shape(N, {channel}); float* scale_data = convParam_.scale()->mutableData(FP32, sb_shape); float* bias_data = convParam_.bias()->mutableData(FP32, sb_shape); for (int i = 0; i < channel; i++) { scale_data[i] = 1.0f; bias_data[i] = param_.bias->data()[i]; } convParam_.scale()->flush(); convParam_.bias()->flush(); convPE_.init(); convPE_.apply(); } bool dispatch() { return convPE_.dispatch(); } FullyConnectedParam& param() { return param_; } private: FullyConnectedParam param_; ConvPE convPE_; Tensor tempOut_; int num_ = 1; }; } // namespace zynqmp } // namespace paddle