im2sequence_kernel.cpp 2.5 KB
Newer Older
Y
yaokun01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* 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/kernel/im2sequence_kernel.h"

namespace paddle_mobile {
namespace operators {

Y
Yao,kun 已提交
20 21 22 23 24
template <>
bool Im2SequenceKernel<CPU, float>::Init(const Im2SequenceParam &para) const {
  return true;
}
    
Y
yaokun01 已提交
25 26 27 28 29 30 31 32
inline int Im2SeqOutputSize(int input_size, int filter_size, int padding_0,
                            int padding_1, int stride) {
  const int output_size =
      (input_size + padding_0 + padding_1 - filter_size) / stride + 1;
  return output_size;
}

template <>
Y
Yao,kun 已提交
33 34
void Im2SequenceKernel<CPU, float>::Compute(
    const Im2SequenceParam &param) const {
Y
yaokun01 已提交
35 36 37
  const Tensor *in_x = param.Input();
  Tensor *out = param.Output();
  out->mutable_data<float>();
Y
yaokun01 已提交
38 39 40 41 42

  std::vector<int> kernels = param.Kernels();
  std::vector<int> strides = param.Strides();
  std::vector<int> paddings = param.Paddings();

Y
yaokun01 已提交
43 44 45 46 47
  auto in_x_dim = in_x->dims();
  const int batch_size = static_cast<int>(in_x_dim[0]);
  const int img_channels = static_cast<int>(in_x_dim[1]);
  const int img_height = static_cast<int>(in_x_dim[2]);
  const int img_width = static_cast<int>(in_x_dim[3]);
Y
yaokun01 已提交
48 49 50 51 52 53 54

  int output_height = Im2SeqOutputSize(img_height, kernels[0], paddings[0],
                                       paddings[2], strides[0]);
  int output_width = Im2SeqOutputSize(img_width, kernels[1], paddings[1],
                                      paddings[3], strides[1]);
  const std::vector<int> dilations({1, 1});

Y
Yao,kun 已提交
55
  // TODO: verify
Y
yaokun01 已提交
56 57
  auto out_dims = out->dims();
  out->Resize({batch_size, out->numel() / batch_size});
Y
yaokun01 已提交
58 59 60

  for (int i = 0; i < batch_size; i++) {
    const Tensor src =
Y
Yao,kun 已提交
61
        in_x->Slice(i, i + 1).Resize({img_channels, img_height, img_width});
Y
yaokun01 已提交
62
    Tensor dst = out->Slice(i, i + 1).Resize(
Y
Yao,kun 已提交
63
        {output_height, output_width, img_channels, kernels[0], kernels[1]});
Y
yaokun01 已提交
64 65 66 67

    math::Im2ColFunctor<math::ColFormat::kOCF, CPU, float> f;
    f(src, dilations, strides, paddings, &dst);
  }
Y
yaokun01 已提交
68
  out->Resize(out_dims);
Y
yaokun01 已提交
69 70 71 72 73 74
}

template class Im2SequenceKernel<CPU, float>;

}  // namespace operators
}  // namespace paddle_mobile