conv_add_kernel.cpp 2.1 KB
Newer Older
Z
zhangyang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

Z
zhangyang 已提交
15
#ifdef FUSION_CONVADD_OP
Z
zhangyang 已提交
16

Z
zhangyang 已提交
17
#include "operators/kernel/conv_add_kernel.h"
Z
zhangyang 已提交
18 19 20 21 22

namespace paddle_mobile {
namespace operators {

template <>
Z
zhangyang 已提交
23
bool ConvAddKernel<FPGA, float>::Init(FusionConvAddParam<FPGA> *param) {
qnqinan's avatar
qnqinan 已提交
24 25 26 27
  // bool relu_enabled = false;
  paddle_mobile::fpga::ActivationType activation_enable =
      paddle_mobile::fpga::NONE;
  int16_t leaky_relu_negative_slope = 0;
Z
zhangyang 已提交
28
  auto input = const_cast<Tensor *>(param->Input());
Z
zhangyang 已提交
29 30
  const Tensor *bias = param->Bias();
  auto bias_ptr = bias->data<float>();
Z
zhangyang 已提交
31 32
  auto filter = const_cast<Tensor *>(param->Filter());
  auto out = param->Output();
Z
zhangyang 已提交
33

Z
zhangyang 已提交
34 35 36
  PADDLE_MOBILE_ENFORCE(out->dims()[1] == bias->dims()[0],
                        "Output channel should be equal to bias number");
  int channel = out->dims()[1];
37 38
  auto bs_ptr =
      (float *)fpga::fpga_malloc(2 * channel * sizeof(float));  // NOLINT
Z
zhangyang 已提交
39
  for (int i = 0; i < channel; i++) {
Z
zhangyang 已提交
40 41
    bs_ptr[i + channel] = 1;
    bs_ptr[i] = bias_ptr[i];
Z
zhangyang 已提交
42
  }
Z
zhangyang 已提交
43

44
  fpga::format_conv_data(filter, out, &bs_ptr, param->Groups());
Z
zhangyang 已提交
45
  fpga::SplitConvArgs conv_arg = {0};
qnqinan's avatar
qnqinan 已提交
46 47 48 49
  fpga::fill_split_arg(&conv_arg, input, out, filter, activation_enable,
                       leaky_relu_negative_slope, param->Groups(),
                       param->Strides()[0], param->Strides()[1],
                       param->Paddings()[0], param->Paddings()[1], bs_ptr);
50
  param->SetFpgaArgs(conv_arg);
Z
zhangyang 已提交
51 52 53 54
  return true;
}

template <>
Z
zhangyang 已提交
55 56
void ConvAddKernel<FPGA, float>::Compute(
    const FusionConvAddParam<FPGA> &param) {
Z
zhangyang 已提交
57 58 59 60 61 62 63
  fpga::ComputeFpgaConv(param.FpgaArgs());
}

}  // namespace operators
}  // namespace paddle_mobile

#endif