concat_kernel.cpp 2.7 KB
Newer Older
H
hanbuhe 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* 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"
Z
zhangyang 已提交
18
#include "fpga/V2/api.h"
H
hanbuhe 已提交
19 20 21 22 23

namespace paddle_mobile {
namespace operators {

template <>
N
nhzlx 已提交
24
bool ConcatKernel<FPGA, float>::Init(ConcatParam<FPGA> *param) {
Z
zhangyang 已提交
25 26 27
  auto inputs = param->Inputs();
  auto out = param->Out();
  auto image_num = inputs.size();
28 29 30 31
  auto images_in =
      (half **)fpga::fpga_malloc(image_num * sizeof(int *));  // NOLINT
  auto scales_in =
      (float **)fpga::fpga_malloc(image_num * sizeof(float *));  // NOLINT
Z
zhangyang 已提交
32
  auto channel_num =
33
      (uint32_t *)fpga::fpga_malloc(image_num * sizeof(uint32_t));  // NOLINT
Z
zhangyang 已提交
34 35
  auto aligned_channel_num =
      (uint32_t *)fpga::fpga_malloc(image_num * sizeof(uint32_t));  // NOLINT
Z
zhangyang 已提交
36 37 38

  auto height = inputs[0]->dims()[2];
  auto width = inputs[0]->dims()[3];
Z
zhangyang 已提交
39 40
  auto out_channel =
      (uint32_t)fpga::get_aligned_channel_num((int)out->dims()[1]);  // NOLINT
Z
zhangyang 已提交
41 42 43 44 45
  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");
Z
zhangyang 已提交
46 47 48 49
    images_in[i] = (half *)input->data<float>();  // NOLINT
    channel_num[i] = (uint32_t)inputs[i]->dims()[1];
    aligned_channel_num[i] =
        (uint32_t)fpga::get_aligned_channel_num(channel_num[i]);
Z
zhangyang 已提交
50 51
    scales_in[i] = input->scale;
  }
Z
zhangyang 已提交
52 53
  fpga::format_concat_output(out, (int)height, (int)width,  // NOLINT
                             out_channel);
Z
zhangyang 已提交
54

55
  fpga::ConcatArgs concatArgs = {0};
Z
zhangyang 已提交
56
  concatArgs.image_num = (uint32_t)image_num;
Z
zhangyang 已提交
57 58
  concatArgs.images_in = images_in;
  concatArgs.scales_in = scales_in;
59
  concatArgs.image_out = (half *)out->data<float>();  // NOLINT
Z
zhangyang 已提交
60 61
  concatArgs.scale_out = out->scale;
  concatArgs.channel_num = channel_num;
Z
zhangyang 已提交
62 63 64 65
  concatArgs.aligned_channel_num = aligned_channel_num;
  concatArgs.out_channel = out_channel;
  concatArgs.height = (uint32_t)height;
  concatArgs.width = (uint32_t)width;
Z
zhangyang 已提交
66
  param->SetFpgaArgs(concatArgs);
H
hanbuhe 已提交
67 68 69 70
  return true;
}

template <>
L
liuruilong 已提交
71
void ConcatKernel<FPGA, float>::Compute(const ConcatParam<FPGA> &param) {
Z
zhangyang 已提交
72
  fpga::ComputeFPGAConcat(param.FpgaArgs());
H
hanbuhe 已提交
73
}
H
hanbuhe 已提交
74
template class ConcatKernel<FPGA, float>;
H
hanbuhe 已提交
75 76 77 78 79

}  // namespace operators
}  // namespace paddle_mobile

#endif