fusion_fc_kernel.cpp 2.9 KB
Newer Older
qnqinan's avatar
qnqinan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* 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 FUSION_FC_OP

#include "operators/kernel/fusion_fc_kernel.h"

namespace paddle_mobile {
19
namespace operators {
qnqinan's avatar
qnqinan 已提交
20

21
template <>
N
nhzlx 已提交
22
bool FusionFcKernel<FPGA, float>::Init(FusionFcParam<FPGA> *param) {
23 24 25 26
  // bool relu_enabled = false;
  paddle_mobile::fpga::ActivationType activation_enable =
      paddle_mobile::fpga::NONE;
  int16_t leaky_relu_negative_slope = 0;
Z
zhangyang 已提交
27
  auto input_x = const_cast<LoDTensor *>(param->InputX());
28
  auto filter = const_cast<LoDTensor *>(param->InputY());
29 30
  const Tensor *input_z = param->InputZ();
  auto input_z_ptr = input_z->data<float>();
Z
zhangyang 已提交
31
  auto out = param->Out();
32 33 34
  float Si = input_x->scale[0];
  float Sf = filter->scale[0];
  float So = out->scale[0];
qnqinan's avatar
qnqinan 已提交
35

36 37
  // PADDLE_MOBILE_ENFORCE(input_x->dims()[1] == filter->dims()[0],
  //                     "Image channel should be equal to weight number");
Z
zhangyang 已提交
38
  int channel = (uint32_t)out->dims()[1];
39 40
  auto bs_ptr =
      (float *)fpga::fpga_malloc(2 * channel * sizeof(float));  // NOLINT
qnqinan's avatar
qnqinan 已提交
41
  for (int i = 0; i < channel; i++) {
42 43 44 45
    //    bs_ptr[i + channel] = 1;
    //    bs_ptr[i] = input_z_ptr[i];
    bs_ptr[i + channel] = Si / So * Sf / 127.0f;
    bs_ptr[i] = input_z_ptr[i] * 127.0f / So;
qnqinan's avatar
qnqinan 已提交
46
  }
Z
zhangyang 已提交
47 48
  int num = (uint32_t)filter->dims()[1];
  int chw = (uint32_t)filter->dims()[0];
Z
zhangyang 已提交
49 50 51
  PADDLE_MOBILE_ENFORCE(
      chw == input_x->numel(),
      "Filter element num should be equal to IFM element num");
Z
zhangyang 已提交
52 53
  int height = (uint32_t)input_x->dims()[2];
  int width = (uint32_t)input_x->dims()[3];
Z
zhangyang 已提交
54
  int filter_channel = chw / height / width;
Z
zhangyang 已提交
55

56
  out->Resize(framework::make_ddim({1, channel, 1, 1}));
Z
zhangyang 已提交
57
  filter->Resize(framework::make_ddim({num, filter_channel, height, width}));
58 59 60 61 62 63
  float max_value = fpga::filter_find_max(filter);
  fpga::format_fc_filter(filter, max_value);

  int element_num_per_div = fpga::get_filter_num_per_div(filter, 1);
  fpga::format_bias_scale_array(&bs_ptr, element_num_per_div, channel);
  fpga::format_fp16_ofm(out);
Z
zhangyang 已提交
64

Z
zhangyang 已提交
65
  fpga::SplitConvArgs conv_arg = {0};
66 67
  fpga::fill_split_arg(&conv_arg, input_x, out, filter, activation_enable,
                       leaky_relu_negative_slope, 1, 1, 1, 0, 0, bs_ptr);
68
  param->SetFpgaArgs(conv_arg);
69 70
  return true;
}
qnqinan's avatar
qnqinan 已提交
71

72
template <>
73
void FusionFcKernel<FPGA, float>::Compute(const FusionFcParam<FPGA> &param) {
74 75 76
  fpga::ComputeFpgaConv(param.FpgaArgs());
}
}  // namespace operators
qnqinan's avatar
qnqinan 已提交
77 78
}  // namespace paddle_mobile

79
#endif