fc_relu_kernel.cpp 3.2 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 17

#include "fpga/api.h"
qnqinan's avatar
qnqinan 已提交
18 19

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

22
template <>
N
nhzlx 已提交
23
bool FusionFcReluKernel<FPGA, float>::Init(FusionFcReluParam<FPGA> *param) {
24
  bool relu_enabled = true;
Z
zhangyang 已提交
25
  Tensor *input_x = const_cast<Tensor *>(param->InputX());
26
  auto input_x_ptr = input_x->data<half>();
qnqinan's avatar
qnqinan 已提交
27
  Tensor *input_y = param->InputY();
28 29 30
  const Tensor *input_z = param->InputZ();
  auto input_z_ptr = input_z->data<float>();
  Tensor *out = param->Out();
qnqinan's avatar
qnqinan 已提交
31

32 33
  PADDLE_MOBILE_ENFORCE(input_x->dims()[1] == input_y->dims()[0],
                        "Image channel should be equal to weight number");
Z
zhangyang 已提交
34
  int channel = out->dims()[1];
qnqinan's avatar
qnqinan 已提交
35 36
  float *bs_ptr = (float *)fpga::fpga_malloc(2 * channel * sizeof(float));
  for (int i = 0; i < channel; i++) {
Z
zhangyang 已提交
37 38
    bs_ptr[i + channel] = 1;
    bs_ptr[i] = input_z_ptr[i];
qnqinan's avatar
qnqinan 已提交
39 40
  }

Z
zhangyang 已提交
41 42 43 44 45 46 47 48 49 50 51 52
  int num = input_y->dims()[1];
  int chw = input_y->dims()[0];
  PADDLE_MOBILE_ENFORCE(
      chw == input_x->numel(),
      "Filter element num should be equal to IFM element num");
  int height = input_x->dims()[2];
  int width = input_x->dims()[3];
  int filter_channel = chw / height / width;

  input_y->Resize(framework::make_ddim({num, filter_channel, height, width}));
  float max_value = fpga::filter_find_max(input_y);
  fpga::format_filter(input_y, max_value, 1);
qnqinan's avatar
qnqinan 已提交
53 54
  auto input_y_ptr = input_y->data<int8_t>();

Z
zhangyang 已提交
55 56 57 58 59 60
  int element_num_per_div = fpga::get_element_num_per_div(input_y, 1);
  fpga::format_bias_scale_array(&bs_ptr, element_num_per_div, channel);

  fpga::format_ofm(out);
  auto out_ptr = out->mutable_data<half>();

61 62 63 64 65
  fpga::ConvArgs convArgs;
  convArgs.relu_enabled = relu_enabled;
  convArgs.filter_address = (void *)input_y_ptr;
  convArgs.filter_num = out->dims()[1];
  convArgs.group_num = 1;
qnqinan's avatar
qnqinan 已提交
66
  convArgs.sb_address = (void *)bs_ptr;
67 68 69 70 71 72 73 74
  convArgs.kernel.stride_w = 1;
  convArgs.kernel.stride_h = 1;
  convArgs.kernel.height = input_x->dims()[2];
  convArgs.kernel.width = input_x->dims()[3];
  convArgs.image.address = (void *)input_x_ptr;
  convArgs.image.channels = input_x->dims()[1];
  convArgs.image.height = input_x->dims()[2];
  convArgs.image.width = input_x->dims()[3];
75 76
  convArgs.image.pad_height = 0;
  convArgs.image.pad_width = 0;
Z
zhangyang 已提交
77
  convArgs.image.scale_address = input_x->scale;
78
  convArgs.output.address = (void *)out_ptr;
Z
zhangyang 已提交
79
  convArgs.output.scale_address = out->scale;
80
  param->SetFpgaArgs(convArgs);
qnqinan's avatar
qnqinan 已提交
81

82 83 84 85
  return true;
}
template <>
void FusionFcReluKernel<FPGA, float>::Compute(
N
nhzlx 已提交
86
    const FusionFcReluParam<FPGA> &param) const {
87 88
  fpga::ComputeFpgaConv(param.FpgaArgs());
};
qnqinan's avatar
qnqinan 已提交
89

90
}  // namespace operators
qnqinan's avatar
qnqinan 已提交
91
}  // namespace paddle_mobile
92
#endif