feed_kernel.cpp 1.6 KB
Newer Older
Y
yangfei 已提交
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. */

#include "operators/kernel/feed_kernel.h"
16

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

template <>
bool FeedKernel<FPGA, float>::Init(FeedParam<FPGA> *param) {
22 23 24 25
  auto output = param->Out();
  if (output->dims().size() != 4) {
    return true;
  }
26
  fpga::format_ofm(output);
Y
yangfei 已提交
27 28
  return true;
}
29

Y
yangfei 已提交
30 31
template <>
void FeedKernel<FPGA, float>::Compute(const FeedParam<FPGA> &param) {
32 33 34 35 36 37 38 39 40 41 42 43 44 45
  auto output = param.Out();
  int col = param.Col();
  auto input = const_cast<LoDTensor *>(&param.InputX()->at(col));
  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;
    return;
  }
  fpga::format_image(input);
46
  output->ShareDataWith(*input);
Y
yangfei 已提交
47 48 49 50
}
template class FeedKernel<FPGA, float>;

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