fetch_kernel.cpp 3.5 KB
Newer Older
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. */
#include "operators/kernel/fetch_kernel.h"
namespace paddle_mobile {
namespace operators {

template <>
19
bool FetchKernel<FPGA, float>::Init(FetchParam<FPGA> *param) {
H
hjchen2 已提交
20 21
  auto input = const_cast<LoDTensor *>(param->InputX());
  int col = param->Col();
22
  DLOG << "col = " << col;
H
hjchen2 已提交
23
  auto output = &(param->Out()->at(col));
24 25 26 27 28 29
  if (input->type() == typeid(float)) {
    return true;
  }
  output->init(typeid(float));
  output->Resize(input->dims());
  fpga::format_fp32_ofm(output);
qnqinan's avatar
qnqinan 已提交
30 31 32 33 34 35 36

  fpga::BypassArgs args = {fpga::DATA_TYPE_FP16};

  args.input_data_type = fpga::DATA_TYPE_FP16;
  args.output_data_type = fpga::DATA_TYPE_FP32;
  args.input_layout_type = fpga::LAYOUT_CHW;
  args.output_layout_type = fpga::LAYOUT_HWC;
37
  args.image.address = input->data<half>();
38
  args.image.channels = (uint32_t)(input->fpga_data_num);
39 40 41 42 43 44 45 46 47 48
  args.image.height = 1;
  args.image.width = 1;
  args.image.pad_height = 0;
  args.image.pad_width = 0;
  args.output.address = output->data<float>();
  args.output.scale_address = output->scale;
  param->fpga_bypass_args = args;

  return true;
}
49 50 51 52 53 54 55 56 57 58
void dealign(float *src, float *dst, int input_c, int input_h, int input_w) {
  int alignCW = paddle_mobile::fpga::align_to_x(input_c * input_w, 16);
  int dealignCW = input_c * input_w;
  for (int h = 0; h < input_h; ++h) {
    auto input_offset = h * alignCW;
    auto output_offset = h * dealignCW;
    memcpy((dst + output_offset), (src + input_offset),
           dealignCW * sizeof(float));
  }
}
59 60
template <>
void FetchKernel<FPGA, float>::Compute(const FetchParam<FPGA> &param) {
H
update  
hjchen2 已提交
61 62
  auto input = const_cast<LoDTensor *>(param.InputX());
  int col = param.Col();
63 64 65 66 67
  auto output = &param.Out()->at(col);
  if (input->type() == typeid(float)) {
    output->ShareDataWith(*input);
    return;
  }
qnqinan's avatar
qnqinan 已提交
68

69 70 71
  fpga::BypassArgs args = param.fpga_bypass_args;
  auto input_address = (input->data<half>());
  args.image.address = static_cast<void *>(input_address);
qnqinan's avatar
qnqinan 已提交
72 73 74
  float *outdata_ptr =
      reinterpret_cast<float *>(param.fpga_bypass_args.output.address);
  const int num_th = 32;
75
  if (output->fpga_data_num < num_th) {
qnqinan's avatar
qnqinan 已提交
76 77 78 79 80 81 82 83
    fpga::fpga_invalidate(input_address, (input->fpga_data_num) * sizeof(half));

    for (int idx = 0; idx < product(input->dims()); ++idx) {
      outdata_ptr[idx] = fpga::fp16_2_fp32(input_address[idx]);
    }
    return;
  }

84
  fpga::PerformBypass(args);
85 86 87
  auto outC = output->dims()[1];
  auto outH = output->dims()[2];
  auto outW = output->dims()[3];
qnqinan's avatar
qnqinan 已提交
88

Z
zhangyang0701 已提交
89
  fpga::fpga_invalidate(param.fpga_bypass_args.output.address,
90
                        output->fpga_data_num * sizeof(float));
91

92
  if (output->fpga_data_num != product(input->dims())) {
J
jameswu2014 已提交
93 94 95 96 97
    float *data_tmp =
        reinterpret_cast<float *>(malloc(outC * outH * outW * sizeof(float)));
    dealign(outdata_ptr, data_tmp, outC, outH, outW);
    memcpy(outdata_ptr, data_tmp, outC * outH * outW * sizeof(float));
    free(data_tmp);
98
  }
99
}
100
template class FetchKernel<FPGA, float>;
101 102 103

}  // namespace operators
}  // namespace paddle_mobile