write_to_array_compute.cc 2.9 KB
Newer Older
Y
Yan Chunwei 已提交
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/arm/write_to_array_compute.h"
16
#include "lite/backends/arm/math/funcs.h"
Y
Yan Chunwei 已提交
17 18 19 20 21 22 23 24

namespace paddle {
namespace lite {
namespace kernels {
namespace arm {

void WriteToArrayCompute::Run() {
  auto& ctx = this->ctx_->template As<ARMContext>();
25
  auto& param = this->template Param<operators::WriteToArrayParam>();
Y
Yan Chunwei 已提交
26
  CHECK_EQ(param.I->numel(), 1) << "input2 should have only one element";
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
  auto precision_type = param.X->precision();

#define SOLVE_TYPE(type__, T)                                       \
  case type__: {                                                    \
    const auto* x_data = param.X->data<T>();                        \
    int id = param.I->data<int64_t>()[0];                           \
    if (id >= param.Out->size()) {                                  \
      for (int i = param.Out->size(); i < id + 1; i++) {            \
        lite::Tensor tmp;                                           \
        param.Out->push_back(tmp);                                  \
      }                                                             \
    }                                                               \
    (*param.Out)[id].Resize(param.X->dims());                       \
    auto out_lod = (*param.Out)[id].mutable_lod();                  \
    *out_lod = param.X->lod();                                      \
    auto* o_data = (*param.Out)[id].mutable_data<T>(TARGET(kHost)); \
    int input_size = param.X->numel();                              \
    memcpy(o_data, x_data, sizeof(T) * input_size);                 \
  } break;

  switch (precision_type) {
    SOLVE_TYPE(PRECISION(kFloat), float);
    SOLVE_TYPE(PRECISION(kInt64), int64_t);
    default:
      LOG(FATAL) << "Unsupported precision type.";
Y
Yan Chunwei 已提交
52
  }
53
#undef SOLVE_TYPE
Y
Yan Chunwei 已提交
54 55 56 57 58 59 60 61 62
}

}  // namespace arm
}  // namespace kernels
}  // namespace lite
}  // namespace paddle

REGISTER_LITE_KERNEL(write_to_array,
                     kARM,
63
                     kAny,
Y
Yan Chunwei 已提交
64 65 66
                     kNCHW,
                     paddle::lite::kernels::arm::WriteToArrayCompute,
                     def)
67
    .BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kAny))})
H
huzhiqiang 已提交
68
    .BindInput("I", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kAny))})
T
TianXiaogang 已提交
69
    .BindOutput("Out", {LiteType::GetTensorListTy(TARGET(kARM))})
Y
Yan Chunwei 已提交
70
    .Finalize();