softmax_kernel.cpp 1.6 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 28 29 30 31 32 33
  const Tensor *input = param->InputX();
  if (input->type() == typeid(half)) {
    auto input_ptr = input->data<half>();
    auto output_ptr = param->Out();
    fpga::BypassArgs args;
    args.convert_type = fpga::DATA_FP16_TO_FP32;
    args.layout_type = fpga::LAYOUT_HWC_TO_CHW;
H
hanbuhe 已提交
34
    args.image.address = (void *)(input_ptr);
35 36 37
    args.image.height = input->dims()[0];
    args.image.width = input->dims()[1];
    args.image.channels = 1;
H
hanbuhe 已提交
38 39 40 41 42 43 44 45
    args.output.address = output_ptr;
    param->SetFpgaArgs(args);
  }

  return true;
}

template <>
N
nhzlx 已提交
46 47
void SoftmaxKernel<FPGA, float>::Compute(
    const SoftmaxParam<FPGA> &param) const {
H
hanbuhe 已提交
48 49 50 51 52 53 54 55
  // SoftmaxCompute<float>(param);
}

template class SoftmaxKernel<FPGA, float>;
}  // namespace operators
}  // namespace paddle_mobile

#endif