fc_relu_kernel.cpp 4.1 KB
Newer Older
qnqinan's avatar
qnqinan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* 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_FCRELU_OP
#include "operators/kernel/fc_relu_kernel.h"
H
hanbuhe 已提交
16

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

20
template <>
N
nhzlx 已提交
21
bool FusionFcReluKernel<FPGA, float>::Init(FusionFcReluParam<FPGA> *param) {
22
  bool relu_enabled = true;
23
  auto *input_x = const_cast<LoDTensor *>(param->InputX());
24
  auto input_x_ptr = input_x->data<float>();
Z
zhangyang 已提交
25
  auto *filter = const_cast<Tensor *>(param->InputY());
26 27 28
  const Tensor *input_z = param->InputZ();
  auto input_z_ptr = input_z->data<float>();
  Tensor *out = param->Out();
Z
zhangyang 已提交
29
  PADDLE_MOBILE_ENFORCE(input_x->dims()[1] == filter->dims()[0],
30
                        "Image channel should be equal to weight number");
Z
zhangyang 已提交
31 32
  int channel = (uint32_t)out->dims()[1];
  auto *bs_ptr = (float *)fpga::fpga_malloc(2 * channel * sizeof(float));
qnqinan's avatar
qnqinan 已提交
33
  for (int i = 0; i < channel; i++) {
Z
zhangyang 已提交
34 35
    bs_ptr[i + channel] = 1;
    bs_ptr[i] = input_z_ptr[i];
qnqinan's avatar
qnqinan 已提交
36 37
  }

Z
zhangyang 已提交
38 39
  int num = (uint32_t)filter->dims()[1];
  int chw = (uint32_t)filter->dims()[0];
Z
zhangyang 已提交
40 41 42
  PADDLE_MOBILE_ENFORCE(
      chw == input_x->numel(),
      "Filter element num should be equal to IFM element num");
Z
zhangyang 已提交
43 44
  int height = (uint32_t)input_x->dims()[2];
  int width = (uint32_t)input_x->dims()[3];
Z
zhangyang 已提交
45 46
  int filter_channel = chw / height / width;

Z
zhangyang 已提交
47 48 49 50
  filter->Resize(framework::make_ddim({num, filter_channel, height, width}));
  float max_value = fpga::filter_find_max(filter);
  fpga::format_filter(filter, max_value, 1);
  auto filter_ptr = filter->data<float>();
qnqinan's avatar
qnqinan 已提交
51

Z
zhangyang 已提交
52
  int element_num_per_div = fpga::get_element_num_per_div(filter, 1);
Z
zhangyang 已提交
53 54
  fpga::format_bias_scale_array(&bs_ptr, element_num_per_div, channel);

55
  auto out_ptr = out->mutable_data<float>();
Z
zhangyang 已提交
56

Z
zhangyang 已提交
57
  fpga::WrapperConvArgs convArgs;
58
  convArgs.group_num = 1;
Z
zhangyang 已提交
59 60 61
  convArgs.split_num = (uint32_t)fpga::get_plit_num(filter);
  convArgs.filter_num = (uint32_t)filter->dims()[0];
  convArgs.output.address = out_ptr;
Z
zhangyang 已提交
62
  convArgs.output.scale_address = out->scale;
Z
zhangyang 已提交
63 64
  convArgs.args = (fpga::ConvArgs *)fpga::fpga_malloc(convArgs.split_num *
                                                      sizeof(fpga::ConvArgs));
65
  param->SetFpgaArgs(convArgs);
qnqinan's avatar
qnqinan 已提交
66

Z
zhangyang 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
  int element_num = fpga::get_aligned_filter_element_num(
      filter->dims()[1] * filter->dims()[2] * filter->dims()[3]);

  int n = convArgs.split_num;
  for (int i = 0; i < n; i++) {
    convArgs.args[i].relu_enabled = relu_enabled;
    convArgs.args[i].group_num = 1;
    convArgs.args[i].kernel.stride_h = 1;
    convArgs.args[i].kernel.stride_w = 1;
    convArgs.args[i].kernel.height = (uint32_t)filter->dims()[2];
    convArgs.args[i].kernel.width = (uint32_t)filter->dims()[3];
    convArgs.args[i].image.address = input_x_ptr;
    convArgs.args[i].image.channels = (uint32_t)input_x->dims()[1];
    convArgs.args[i].image.height = (uint32_t)input_x->dims()[2];
    convArgs.args[i].image.width = (uint32_t)input_x->dims()[3];
    convArgs.args[i].image.pad_height = 0;
    convArgs.args[i].image.pad_width = 0;
    convArgs.args[i].filter_address = &((int8_t *)filter_ptr)[i * element_num];
    convArgs.args[i].sb_address = &((int8_t *)bs_ptr)[i * element_num];
    convArgs.args[i].filter_num =
        (uint32_t)(i == n - 1 ? fpga::get_aligned_filter_num(
                                    channel - (n - 1) * element_num_per_div)
                              : element_num_per_div);
    convArgs.args[i].image.scale_address =
        (float *)fpga::fpga_malloc(2 * sizeof(float));
  }
93 94 95 96
  return true;
}
template <>
void FusionFcReluKernel<FPGA, float>::Compute(
N
nhzlx 已提交
97
    const FusionFcReluParam<FPGA> &param) const {
98 99
  fpga::ComputeFpgaConv(param.FpgaArgs());
};
qnqinan's avatar
qnqinan 已提交
100

101
}  // namespace operators
qnqinan's avatar
qnqinan 已提交
102
}  // namespace paddle_mobile
103
#endif