stack_compute.cc 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2019 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 "lite/kernels/xpu/stack_compute.h"
C
Cwndmiao 已提交
16
#include "lite/backends/xpu/xpu_header_sitter.h"
17 18 19 20 21 22 23 24 25 26 27
#include "lite/core/op_registry.h"

namespace paddle {
namespace lite {
namespace kernels {
namespace xpu {

void StackCompute::PrepareForRun() {
  auto& param = this->Param<param_t>();

  int n = param.X.size();
28 29
  x_ptr_guard_ = TargetWrapperXPU::MallocScratchPad(
      n * 8 /* sizeof(__global__ float*) */, false /* use_l3 */);
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
  x_ptr_cpu_.reserve(n);
}

void StackCompute::Run() {
  auto& param = this->Param<param_t>();
  auto& ctx = this->ctx_->As<XPUContext>();

  int n = param.X.size();
  auto x_dims = param.X[0]->dims();
  int axis = param.axis;
  // XXX(miaotianxiang): +1?
  if (axis < 0) axis += (x_dims.size() + 1);
  auto matrix = x_dims.Flatten2D(axis);
  int height = matrix[0];
  int width = matrix[1];

  for (int i = 0; i < n; ++i) {
    x_ptr_cpu_[i] = param.X[i]->data<float>();
  }
49 50
  XPU_CALL(xpu_memcpy(
      x_ptr_guard_->addr_, &x_ptr_cpu_[0], n * 8, XPU_HOST_TO_DEVICE));
51 52 53 54 55 56

  int r = xdnn::stack_forward(
      ctx.GetRawContext(), /* context */
      height,              /* height */
      width,               /* width */
      n,                   /* n */
57
      x_ptr_guard_->addr_, /* x_ptr */
58 59 60 61 62 63 64 65 66 67 68 69 70 71
      param.Out->mutable_data<float>(TARGET(kXPU)) /* out */);
  CHECK_EQ(r, 0);
}

}  // namespace xpu
}  // namespace kernels
}  // namespace lite
}  // namespace paddle

REGISTER_LITE_KERNEL(
    stack, kXPU, kFloat, kNCHW, paddle::lite::kernels::xpu::StackCompute, def)
    .BindInput("X", {LiteType::GetTensorTy(TARGET(kXPU))})
    .BindOutput("Y", {LiteType::GetTensorTy(TARGET(kXPU))})
    .Finalize();