im2sequence_op.cpp 1.9 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
bugfix  
Yao,kun 已提交
31
  auto in_x_dims = this->param_.Input()->dims();
Y
yaokun01 已提交
32

Y
bugfix  
Yao,kun 已提交
33
  const std::vector<int> &kernels = this->param_.Kernels();
Y
yaokun01 已提交
34

Y
bugfix  
Yao,kun 已提交
35
  const std::vector<int> &strides = this->param_.Strides();
Y
yaokun01 已提交
36

Y
bugfix  
Yao,kun 已提交
37
  std::vector<int> paddings = this->param_.Paddings();
Y
yaokun01 已提交
38

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
                                                 paddings[i], paddings[i + 2],
                                                 strides[i]));
  }

  framework::DDim ddim = framework::make_ddim(output_shape);
Y
bugfix  
Yao,kun 已提交
47
  this->param_.Output()->Resize(ddim);
Y
yaokun01 已提交
48 49 50 51 52 53
}

}  // namespace operators
}  // namespace paddle_mobile

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

#endif