softmax_kernel.cpp 2.2 KB
Newer Older
H
hanbuhe 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* 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 SOFTMAX_OP

#include "../softmax_kernel.h"
#include "../central-arm-func/softmax_arm_func.h"
#include "common/types.h"
H
hanbuhe 已提交
20
#include "fpga/api.h"
H
hanbuhe 已提交
21 22 23 24 25
#include "operators/math/softmax.h"
namespace paddle_mobile {
namespace operators {

template <>
N
nhzlx 已提交
26
bool SoftmaxKernel<FPGA, float>::Init(SoftmaxParam<FPGA> *param) {
H
hanbuhe 已提交
27
  const Tensor *input = param->InputX();
28 29 30 31 32 33 34 35
  auto input_ptr = input->data<float>();
  auto output_ptr = param->Out();
  Tensor *floatInput = new Tensor(*input);
  fpga::BypassArgs args;
  args.input_layout_type = fpga::LAYOUT_HWC;
  args.output_layout_type = fpga::LAYOUT_CHW;
  args.input_data_type = fpga::DATA_TYPE_FP16;
  args.output_data_type = fpga::DATA_TYPE_FP32;
H
hanbuhe 已提交
36
  args.image.address = (void *)(input_ptr);
37 38 39
  args.image.height = (uint32_t)input->dims()[0];
  args.image.width = (uint32_t)input->dims()[1];
  args.image.channels = 1;
H
hanbuhe 已提交
40
  args.output.address = (void *)floatInput->mutable_data<float>();
41 42 43

  param->SetFloatInput(floatInput);
  param->SetFpgaArgs(args);
H
hanbuhe 已提交
44 45 46 47
  return true;
}

template <>
N
nhzlx 已提交
48 49
void SoftmaxKernel<FPGA, float>::Compute(
    const SoftmaxParam<FPGA> &param) const {
H
hanbuhe 已提交
50 51
  DLOG << "======================================= FPGA SoftMAX "
          "===============================================";
52
  const Tensor *in_x = param.FloatInput();
H
hanbuhe 已提交
53
  Tensor *out = param.Out();
H
hanbuhe 已提交
54
  fpga::fpga_flush((void *)in_x->data<float>(), in_x->memory_size());
55 56 57
  fpga::PerformBypass(param.FpgaArgs());
  fpga::fpga_invalidate(out->data<float>(), out->memory_size());

H
hanbuhe 已提交
58 59 60
  auto x_dims = in_x->dims();
  out->Resize(x_dims);
  math::SoftmaxFuntor<CPU, float>()(in_x, out);
H
hanbuhe 已提交
61 62 63 64 65 66
}

}  // namespace operators
}  // namespace paddle_mobile

#endif