pool_op.cc 9.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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 "paddle/operators/pool_op.h"

namespace paddle {
namespace operators {

C
chengduoZH 已提交
20
int OutputSizePool(int input_size, int filter_size, int padding, int stride) {
21 22 23 24 25 26 27 28 29 30
  int output_size = (input_size - filter_size + 2 * padding) / stride + 1;
  return output_size;
}

class PoolOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
  void InferShape(const framework::InferShapeContext &ctx) const override {
31 32 33 34
    PADDLE_ENFORCE_NOT_NULL(ctx.InputVar("X"),
                            "X(Input) of Pooling should not be null.");
    PADDLE_ENFORCE_NOT_NULL(ctx.OutputVar("Out"),
                            "Out(Output) of Pooling should not be null.");
C
chengduoZH 已提交
35

C
chengduoZH 已提交
36
    auto in_x = ctx.Input<Tensor>("X");
C
chengduoZH 已提交
37
    auto out = ctx.Output<Tensor>("Out");
38 39
    int global_pooling = Attr<int>("globalPooling");
    std::string pooling_type = Attr<std::string>("poolingType");
40 41 42 43
    std::vector<int> ksize = Attr<std::vector<int>>("ksize");
    std::vector<int> strides = Attr<std::vector<int>>("strides");
    std::vector<int> paddings = Attr<std::vector<int>>("paddings");

C
chengduoZH 已提交
44 45
    PADDLE_ENFORCE(pooling_type == "max" || pooling_type == "avg",
                   "pooling_type should be 'max' or 'avg'");
C
chengduoZH 已提交
46
    PADDLE_ENFORCE(in_x->dims().size() == 4 || in_x->dims().size() == 5,
C
chengduoZH 已提交
47
                   "Pooling intput should be 4-D or 5-D");
C
chengduoZH 已提交
48 49 50 51 52 53
    PADDLE_ENFORCE(ksize.size() == 2 || ksize.size() == 3,
                   "Pooling size should be 2 elements. or 3 elements.");
    PADDLE_ENFORCE_EQ(ksize.size(), strides.size(),
                      "strides size and pooling size should be the same.");
    PADDLE_ENFORCE_EQ(ksize.size(), paddings.size(),
                      "paddings size and pooling size should be the same.");
54 55

    if (global_pooling == 1) {
C
chengduoZH 已提交
56
      ksize.resize(static_cast<size_t>(in_x->dims().size()) - 2);
C
chengduoZH 已提交
57
      for (size_t i = 0; i < ksize.size(); ++i)
C
chengduoZH 已提交
58
        ksize[i] = static_cast<int>(in_x->dims()[i + 2]);
59
    }
C
chengduoZH 已提交
60

C
chengduoZH 已提交
61
    std::vector<int64_t> output_shape({in_x->dims()[0], in_x->dims()[1]});
62
    for (size_t i = 0; i < ksize.size(); ++i) {
C
chengduoZH 已提交
63 64
      output_shape.push_back(OutputSizePool(in_x->dims()[i + 2], ksize[i],
                                            paddings[i], strides[i]));
65
    }
66
    out->Resize(framework::make_ddim(output_shape));
67 68 69 70 71 72 73 74 75
  }
};

class PoolOpGrad : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
  void InferShape(const framework::InferShapeContext &ctx) const override {
C
chengduoZH 已提交
76 77 78 79 80 81 82
    PADDLE_ENFORCE_NOT_NULL(ctx.InputVar("X"),
                            "X(Input) of Pooling should not be null.");
    PADDLE_ENFORCE_NOT_NULL(ctx.InputVar("Out"),
                            "Out(Output) of Pooling should not be null.");
    PADDLE_ENFORCE_NOT_NULL(ctx.Output<Tensor>(framework::GradVarName("X")),
                            "Input@Grad of Pooling should not be null.");

83
    auto in = ctx.Input<Tensor>("X");
C
chengduoZH 已提交
84
    auto d_in = ctx.Output<Tensor>(framework::GradVarName("X"));
C
chengduoZH 已提交
85
    d_in->Resize(in->dims());
86 87 88
  }
};

C
chengduoZH 已提交
89
class Pool2dOpMaker : public framework::OpProtoAndCheckerMaker {
90
 public:
C
chengduoZH 已提交
91
  Pool2dOpMaker(framework::OpProto *proto, framework::OpAttrChecker *op_checker)
92 93
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput(
94
        "X",
95
        "The input tensor of pooling operator. "
C
chengduoZH 已提交
96
        "The format of input tensor is NCHW. Where N is batch size, C is the "
C
chengduoZH 已提交
97
        "number of channels, H and W is the height and width of feature.");
98
    AddOutput("Out",
99
              "The output tensor of pooling operator."
C
chengduoZH 已提交
100
              "The format of output tensor is also NCHW.");
101

102
    AddAttr<std::string>("poolingType",
C
chengduoZH 已提交
103
                         "poolingType of pooling operator."
C
chengduoZH 已提交
104
                         "str constant equal to 'max' or 'avg'");
105
    AddAttr<std::vector<int>>(
C
chengduoZH 已提交
106 107
        "ksize", "pooling size(height, width) of pooling operator.")
        .AddCustomChecker(GreaterThanChecker_pool({0, 0}));
C
chengduoZH 已提交
108 109 110 111 112 113
    AddAttr<int>(
        "globalPooling",
        "whether to use the globalPooling."
        "int constant equal to 0 or 1"
        "default 0"
        "If globalPooling = 1, ksize is ignored and need not be specified.")
114
        .SetDefault(0);
C
chengduoZH 已提交
115 116 117
    AddAttr<std::vector<int>>("strides",
                              "strides(height, width) of pooling operator."
                              "default {1,1}")
C
chengduoZH 已提交
118 119
        .SetDefault({1, 1})
        .AddCustomChecker(GreaterThanChecker_pool({0, 0}));
C
chengduoZH 已提交
120 121 122
    AddAttr<std::vector<int>>("paddings",
                              "paddings(height, width) of pooling operator."
                              "default {0,0}")
C
chengduoZH 已提交
123 124
        .SetDefault({0, 0})
        .AddCustomChecker(EqualGreaterThanChecker_pool({0, 0}));
125
    AddComment(R"DOC(
C
chengduoZH 已提交
126
The pooling2d operation calculates the output based on
127
the input, poolingType and ksize, strides, paddings parameters.
128 129
)DOC");
  }
C
chengduoZH 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160

 private:
  struct GreaterThanChecker_pool {
   public:
    explicit GreaterThanChecker_pool(std::vector<int> lower_bound)
        : lower_bound_(lower_bound) {}
    void operator()(std::vector<int> &value) const {
      PADDLE_ENFORCE(value.size() == lower_bound_.size(), "equal check fails.");
      for (size_t i = 0; i < value.size(); ++i) {
        PADDLE_ENFORCE(value[i] > lower_bound_[i], "larger_than check fails.");
      }
    }

   private:
    std::vector<int> lower_bound_;
  };

  struct EqualGreaterThanChecker_pool {
   public:
    explicit EqualGreaterThanChecker_pool(std::vector<int> lower_bound)
        : lower_bound_(lower_bound) {}
    void operator()(std::vector<int> &value) const {
      PADDLE_ENFORCE(value.size() == lower_bound_.size(), "equal check fails.");
      for (size_t i = 0; i < value.size(); ++i) {
        PADDLE_ENFORCE(value[i] >= lower_bound_[i], "larger_than check fails.");
      }
    }

   private:
    std::vector<int> lower_bound_;
  };
161
};
C
chengduoZH 已提交
162
class Pool3dOpMaker : public framework::OpProtoAndCheckerMaker {
163
 public:
C
chengduoZH 已提交
164
  Pool3dOpMaker(framework::OpProto *proto, framework::OpAttrChecker *op_checker)
165
      : OpProtoAndCheckerMaker(proto, op_checker) {
C
chengduoZH 已提交
166 167 168 169 170
    AddInput("X",
             "The input tensor of pooling operator. "
             "The format of input tensor is NCDHW. Where N is batch size, C is "
             "the "
             "number of channels, D, H and W is the depth, height and width of "
C
chengduoZH 已提交
171
             "feature.");
172
    AddOutput("Out",
173
              "The output tensor of pooling operator."
C
chengduoZH 已提交
174
              "The format of output tensor is also NCDHW.");
175

176
    AddAttr<std::string>("poolingType",
C
chengduoZH 已提交
177
                         "poolingType of pooling operator."
C
chengduoZH 已提交
178
                         "str constant equal to 'max' or 'avg'");
179
    AddAttr<std::vector<int>>(
C
chengduoZH 已提交
180 181
        "ksize", "pooling size(depth, height, width) of pooling operator.")
        .AddCustomChecker(GreaterThanChecker_pool({0, 0, 0}));
C
chengduoZH 已提交
182 183 184 185 186 187
    AddAttr<int>(
        "globalPooling",
        "whether to use the globalPooling."
        "int constant equal to 0 or 1"
        "default 0"
        "If globalPooling = 1, ksize is ignored and need not be specified.")
188
        .SetDefault(0);
C
chengduoZH 已提交
189 190 191 192
    AddAttr<std::vector<int>>(
        "strides",
        "strides(depth, height, width) of pooling operator."
        "default {1,1,1}")
C
chengduoZH 已提交
193 194
        .SetDefault({1, 1, 1})
        .AddCustomChecker(GreaterThanChecker_pool({0, 0, 0}));
C
chengduoZH 已提交
195 196 197 198
    AddAttr<std::vector<int>>(
        "paddings",
        "paddings(depth, height, width) of pooling operator."
        "default {0,0,0}")
C
chengduoZH 已提交
199 200
        .SetDefault({0, 0, 0})
        .AddCustomChecker(EqualGreaterThanChecker_pool({0, 0, 0}));
201
    AddComment(R"DOC(
C
chengduoZH 已提交
202
The pooling3d operation calculates the output based on
203
the input, poolingType and ksize, strides, paddings parameters.
204 205
)DOC");
  }
C
chengduoZH 已提交
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236

 private:
  struct GreaterThanChecker_pool {
   public:
    explicit GreaterThanChecker_pool(std::vector<int> lower_bound)
        : lower_bound_(lower_bound) {}
    void operator()(std::vector<int> &value) const {
      PADDLE_ENFORCE(value.size() == lower_bound_.size(), "equal check fails.");
      for (size_t i = 0; i < value.size(); ++i) {
        PADDLE_ENFORCE(value[i] > lower_bound_[i], "larger_than check fails.");
      }
    }

   private:
    std::vector<int> lower_bound_;
  };

  struct EqualGreaterThanChecker_pool {
   public:
    explicit EqualGreaterThanChecker_pool(std::vector<int> lower_bound)
        : lower_bound_(lower_bound) {}
    void operator()(std::vector<int> &value) const {
      PADDLE_ENFORCE(value.size() == lower_bound_.size(), "equal check fails.");
      for (size_t i = 0; i < value.size(); ++i) {
        PADDLE_ENFORCE(value[i] >= lower_bound_[i], "larger_than check fails.");
      }
    }

   private:
    std::vector<int> lower_bound_;
  };
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
};
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;

REGISTER_OP(pool2d, ops::PoolOp, ops::Pool2dOpMaker, pool2d_grad,
            ops::PoolOpGrad);

REGISTER_OP_CPU_KERNEL(pool2d,
                       ops::PoolKernel<paddle::platform::CPUPlace, float>);
REGISTER_OP_CPU_KERNEL(pool2d_grad,
                       ops::PoolGradKernel<paddle::platform::CPUPlace, float>)

REGISTER_OP(pool3d, ops::PoolOp, ops::Pool3dOpMaker, pool3d_grad,
            ops::PoolOpGrad);

REGISTER_OP_CPU_KERNEL(pool3d,
                       ops::PoolKernel<paddle::platform::CPUPlace, float>);
REGISTER_OP_CPU_KERNEL(pool3d_grad,
                       ops::PoolGradKernel<paddle::platform::CPUPlace, float>);