im2sequence_op.cpp 2.0 KB
Newer Older
Y
yaokun01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

Y
Yao,kun 已提交
15 16
#ifdef IM2SEQUENCE_OP

Y
yaokun01 已提交
17 18 19 20 21
#include "operators/im2sequence_op.h"

namespace paddle_mobile {
namespace operators {

Y
Yao,kun 已提交
22 23 24 25
int Im2SequenceOutputSize(int input_size, int kernel, int padding_1,
                          int padding_2, int stride) {
  int output_size =
      1 + (padding_1 + padding_2 + input_size - kernel + stride - 1) / stride;
Y
yaokun01 已提交
26 27 28 29 30
  return output_size;
}

template <typename Dtype, typename T>
void Im2SequenceOp<Dtype, T>::InferShape() const {
Y
yaokun01 已提交
31
  auto in_x_dims = param_.Input()->dims();
Y
yaokun01 已提交
32 33 34 35 36 37 38

  const std::vector<int> &kernels = param_.Kernels();

  const std::vector<int> &strides = param_.Strides();

  std::vector<int> paddings = param_.Paddings();

Y
yaokun01 已提交
39
  std::vector<int64_t> output_shape({in_x_dims[0], in_x_dims[1]});
Y
yaokun01 已提交
40
  for (size_t i = 0; i < strides.size(); ++i) {
Y
yaokun01 已提交
41
    output_shape.push_back(Im2SequenceOutputSize(in_x_dims[i + 2], kernels[i],
Y
yaokun01 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55
                                                 paddings[i], paddings[i + 2],
                                                 strides[i]));
  }

  framework::DDim ddim = framework::make_ddim(output_shape);
  param_.Output()->Resize(ddim);
}

template class Im2SequenceOp<CPU, float>;

}  // namespace operators
}  // namespace paddle_mobile

namespace ops = paddle_mobile::operators;
Y
Yao,kun 已提交
56
#ifdef PADDLE_MOBILE_CPU
Y
Yao,kun 已提交
57 58
USE_OP_CPU(im2sequence);
REGISTER_OPERATOR_CPU(im2sequence, ops::Im2SequenceOp);
Y
Yao,kun 已提交
59 60 61 62 63 64 65
#endif
#ifdef PADDLE_MOBILE_MALI_GPU
#endif
#ifdef PADDLE_MOBILE_FPGA
#endif

#endif