im2sequence_op.cpp 1.8 KB
Newer Older
Y
yaokun01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/* 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. */

#include "operators/im2sequence_op.h"

namespace paddle_mobile {
namespace operators {

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;
  return output_size;
}

template <typename Dtype, typename T>
void Im2SequenceOp<Dtype, T>::InferShape() const {

Y
yaokun01 已提交
29
  auto in_x_dims = param_.Input()->dims();
Y
yaokun01 已提交
30 31 32 33 34 35 36

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

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

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

Y
yaokun01 已提交
37
  std::vector<int64_t> output_shape({in_x_dims[0], in_x_dims[1]});
Y
yaokun01 已提交
38
  for (size_t i = 0; i < strides.size(); ++i) {
Y
yaokun01 已提交
39
    output_shape.push_back(Im2SequenceOutputSize(in_x_dims[i + 2], kernels[i],
Y
yaokun01 已提交
40 41 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;
USE_OP(im2sequence);
REGISTER_OPERATOR(im2sequence, ops::Im2SequenceOp);