pool_op.cpp 2.1 KB
Newer Older
W
wangliu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/* 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. */
14

L
liuruilong 已提交
15 16
#ifdef POOL_OP

17 18 19 20 21 22 23
#include "pool_op.h"

namespace paddle_mobile {
namespace operators {

int PoolOutputSize(int input_size, int filter_size, int padding, int stride,
                   bool ceil_mode) {
24 25 26 27 28 29 30 31
  int output_size;
  if (!ceil_mode) {
    output_size = (input_size - filter_size + 2 * padding) / stride + 1;
  } else {
    output_size =
        (input_size - filter_size + 2 * padding + stride - 1) / stride + 1;
  }
  return output_size;
32 33 34
}
template <typename DeviceType, typename T>
void PoolOp<DeviceType, T>::InferShape() const {
35 36 37 38 39
  auto in_x_dims = param_.Input()->dims();
  std::vector<int> ksize = param_.Ksize();
  std::vector<int> paddings = param_.Paddings();
  std::vector<int> strides = param_.Strides();
  bool ceil_mode = param_.isCeilMode();
40

41 42
  if (param_.isGlobalPooling()) {
    ksize.resize(static_cast<size_t>(in_x_dims.size()) - 2);
43
    for (size_t i = 0; i < ksize.size(); ++i) {
44 45
      paddings[i] = 0;
      ksize[i] = static_cast<int>(in_x_dims[i + 2]);
46
    }
47 48 49 50 51 52 53
  }
  std::vector<int64_t> output_shape({in_x_dims[0], in_x_dims[1]});
  for (size_t i = 0; i < ksize.size(); ++i) {
    output_shape.push_back(PoolOutputSize(in_x_dims[i + 2], ksize[i],
                                          paddings[i], strides[i], ceil_mode));
  }
  param_.Output()->Resize(framework::make_ddim(output_shape));
54 55
}
template class PoolOp<CPU, float>;
朔-望's avatar
朔-望 已提交
56 57
}  // namespace operators
}  // namespace paddle_mobile
E
eclipsess 已提交
58 59 60 61

namespace ops = paddle_mobile::operators;
USE_OP(pool2d);
REGISTER_OPERATOR(pool2d, ops::PoolOp);
L
liuruilong 已提交
62 63

#endif