feed_kernel.cpp 3.7 KB
Newer Older
Y
yangfei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* 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/feed_kernel.h"

namespace paddle_mobile {
Y
yangfei 已提交
18 19 20 21
namespace operators {

template <>
bool FeedKernel<FPGA, float>::Init(FeedParam<FPGA> *param) {
22
  auto output = param->Out();
H
hjchen2 已提交
23
  int col = param->Col();
24
  DLOG << "col = " << col;
H
hjchen2 已提交
25
  auto input = const_cast<LoDTensor *>(&param->InputX()->at(col));
26
  input->init(type_id<float>().hash_code());
27 28 29 30 31
  input->Resize(output->dims());

  if (output->dims().size() != 4) {
    return true;
  }
32

Y
yangfei 已提交
33 34 35 36 37 38
  fpga::format_fp16_ofm(output);
  return true;
}

template <>
void FeedKernel<FPGA, float>::Compute(const FeedParam<FPGA> &param) {
39
  auto output = param.Out();
H
hjchen2 已提交
40 41
  int col = param.Col();
  auto input = const_cast<LoDTensor *>(&param.InputX()->at(col));
42
  kTypeId_t input_type = input->type();
43

44 45 46 47
  if (input_type == type_id<float>()) {
    input->init(type_id<float>().hash_code());
  } else {
    input->init(type_id<int8_t>().hash_code());
48 49
  }
  input->Resize(output->dims());
50

J
jameswu2014 已提交
51 52 53 54 55 56 57 58
  if (output->dims().size() != 4) {
    size_t size = output->numel() * sizeof(float);
    auto output_ptr = output->data<float>();
    auto input_ptr = input->data<float>();
    auto external_ptr = reinterpret_cast<float *>(input->external_data);
    float *p_data = external_ptr == nullptr ? input_ptr : external_ptr;
    memcpy(output_ptr, p_data, size);
    input->external_data = nullptr;
59 60 61
    return;
  }

Y
yangfei 已提交
62
  fpga::format_image(input);
63
  auto output_ptr = output->data<half>();
Y
yangfei 已提交
64
  fpga::BypassArgs args = {fpga::DATA_TYPE_FP32};
65
  if (input_type == type_id<float>()) {
66 67 68
    auto input_ptr = input->data<float>();
    auto external_ptr = reinterpret_cast<float *>(input->external_data);
    float *p_data = external_ptr == nullptr ? input_ptr : external_ptr;
Y
yangfei 已提交
69

70 71 72 73 74 75 76 77 78 79 80 81 82 83
    args.input_data_type = fpga::DATA_TYPE_FP32;
    args.output_data_type = fpga::DATA_TYPE_FP16;
    args.input_layout_type = fpga::LAYOUT_CHW;
    args.output_layout_type = fpga::LAYOUT_HWC;
    args.image.address = p_data;
    args.image.channels = (uint32_t)input->dims()[1];
    args.image.height = (uint32_t)input->dims()[2];
    args.image.width = (uint32_t)input->dims()[3];
    args.image.pad_height = 0;
    args.image.pad_width = 0;
    args.output.address = output_ptr;
    args.output.scale_address = output->scale;
    fpga::PerformBypass(args);
    input->external_data = nullptr;
84
  } else {
85 86 87
    auto input_ptr = input->data<int8_t>();
    auto external_ptr = reinterpret_cast<int8_t *>(input->external_data);
    int8_t *p_data = external_ptr == nullptr ? input_ptr : external_ptr;
88

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    args.input_data_type = fpga::DATA_TYPE_INT8;
    args.output_data_type = fpga::DATA_TYPE_FP16;
    args.input_layout_type = fpga::LAYOUT_CHW;
    args.output_layout_type = fpga::LAYOUT_HWC;
    args.image.address = p_data;
    args.image.channels = (uint32_t)input->dims()[1];
    args.image.height = (uint32_t)input->dims()[2];
    args.image.width = (uint32_t)input->dims()[3];
    args.image.pad_height = 0;
    args.image.pad_width = 0;
    args.output.address = output_ptr;
    args.output.scale_address = output->scale;
    fpga::PerformBypass(args);
    input->external_data = nullptr;
  }
Y
yangfei 已提交
104 105 106 107
}
template class FeedKernel<FPGA, float>;

}  // namespace operators
Y
yangfei 已提交
108
}  // namespace paddle_mobile