/* Copyright (c) 2018 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 "operators/kernel/fetch_kernel.h" namespace paddle_mobile { namespace operators { template <> bool FetchKernel::Init(FetchParam *param) { auto input = const_cast(param->InputX()); int col = param->Col(); DLOG << "col = " << col; auto output = &(param->Out()->at(col)); output->init(type_id().hash_code()); output->mutable_data(input->dims()); auto aligned_output = param->aligned_out; int outC = 1; int outW = 1; if (output->dims().size() == 4) { outC = output->dims()[1]; outW = output->dims()[3]; } else { // 2 outC = output->dims()[1]; } int unalignedCW = outC * outW; int alignedCW = fpga::align_to_x(unalignedCW, IMAGE_ALIGNMENT); if (alignedCW != unalignedCW) { param->aligned_out = std::make_shared(); param->aligned_out->Resize(input->dims()); param->aligned_out->init(type_id().hash_code()); fpga::format_ofm(param->aligned_out.get()); } return true; } void dealign(float *src, float *dst, int input_c, int input_h, int input_w) { int alignCW = paddle_mobile::fpga::align_to_x(input_c * input_w, IMAGE_ALIGNMENT); int dealignCW = input_c * input_w; for (int h = 0; h < input_h; ++h) { auto input_offset = h * alignCW; auto output_offset = h * dealignCW; memcpy((dst + output_offset), (src + input_offset), dealignCW * sizeof(float)); } } template <> void FetchKernel::Compute(const FetchParam ¶m) { auto input = const_cast(param.InputX()); int col = param.Col(); auto output = ¶m.Out()->at(col); auto outdata_ptr = const_cast(output->data()); int outC = 1; int outH = 1; int outW = 1; if (output->dims().size() == 4) { outC = output->dims()[1]; outH = output->dims()[2]; outW = output->dims()[3]; } else { // 2 outC = output->dims()[1]; } int unalignedCW = outC * outW; int alignedCW = fpga::align_to_x(unalignedCW, IMAGE_ALIGNMENT); if (input->type() == type_id()) { if ((output->dims().size() != 4) || (unalignedCW == alignedCW)) { output->ShareDataWith(*input); } else { auto input_address = input->data(); dealign(input_address, outdata_ptr, outC, outH, outW); fpga::fpga_flush(outdata_ptr, outC * outH * outW * sizeof(float)); } return; } auto input_address = input->data(); float Si = input->scale[0]; const int num_th = 32; fpga::fpga_invalidate(input_address, (input->fpga_data_num) * sizeof(int8_t)); if (input->fpga_data_num < num_th) { for (int idx = 0; idx < product(input->dims()); ++idx) { outdata_ptr[idx] = input_address[idx] / 127.0 * Si; } fpga::fpga_flush(outdata_ptr, product(input->dims()) * sizeof(float)); return; } auto aligned_out = param.aligned_out.get(); if (unalignedCW != alignedCW) { auto aligned_ptr = aligned_out->data(); fpga::fpga_invalidate(aligned_ptr, (input->fpga_data_num) * sizeof(float)); for (int idx = 0; idx < input->fpga_data_num; ++idx) { aligned_ptr[idx] = input_address[idx] / 127.0 * Si; } dealign(aligned_ptr, outdata_ptr, outC, outH, outW); fpga::fpga_flush(outdata_ptr, outC * outH * outW * sizeof(float)); return; } for (int idx = 0; idx < input->fpga_data_num; ++idx) { outdata_ptr[idx] = input_address[idx] / 127.0 * Si; } fpga::fpga_flush(outdata_ptr, outC * outH * outW * sizeof(float)); } template class FetchKernel; } // namespace operators } // namespace paddle_mobile