/* 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. */ #ifdef CONCAT_OP #include "operators/kernel/concat_kernel.h" namespace paddle_mobile { namespace operators { template <> bool ConcatKernel::Init(ConcatParam *param) { auto inputs = param->Inputs(); auto out = param->Out(); auto image_num = inputs.size(); auto images_in = (half **)fpga::fpga_malloc(image_num * sizeof(int *)); auto scales_in = (float **)fpga::fpga_malloc(image_num * sizeof(float *)); auto channel_num = (uint32_t *)fpga::fpga_malloc(image_num * sizeof(uint32_t)); auto height = inputs[0]->dims()[2]; auto width = inputs[0]->dims()[3]; for (int i = 0; i < image_num; i++) { auto input = inputs[i]; PADDLE_MOBILE_ENFORCE( input->dims()[2] == height && input->dims()[3] == width, "Image height & width should be unified"); images_in[i] = (half *)input->data(); channel_num[i] = (uint32_t)inputs[i]->dims()[1]; scales_in[i] = input->scale; } fpga::format_concat_output(out, (int)height, (int)width, (int)image_num, channel_num); fpga::ConcatArgs concatArgs = {0}; concatArgs.image_num = (uint32_t)image_num; concatArgs.images_in = images_in; concatArgs.scales_in = scales_in; concatArgs.image_out = (half *)out->data(); concatArgs.scale_out = out->scale; concatArgs.channel_num = channel_num; concatArgs.height = (uint32_t)height; concatArgs.width = (uint32_t)width; param->SetFpgaArgs(concatArgs); return true; } template <> void ConcatKernel::Compute(const ConcatParam ¶m) const { ComputeFPGAConcat(param.FpgaArgs()); } template class ConcatKernel; } // namespace operators } // namespace paddle_mobile #endif