pool_op.cc 7.1 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 outputSize_pool(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 35
    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.");
    //    PADDLE_ENFORCE_NOT_NULL(Attr<std::string>("poolingType"),
36 37 38
    //                            "pooling_type should not be null.");
    //    PADDLE_ENFORCE_NOT_NULL(Attr<std::vector<int>>("ksize"), "ksize should
    //    not be null.");
39 40 41 42
    auto in_X = ctx.Input<Tensor>("X");
    auto out = ctx.Output<framework::LoDTensor>("Out");
    int global_pooling = Attr<int>("globalPooling");
    std::string pooling_type = Attr<std::string>("poolingType");
43 44 45 46 47 48 49 50 51 52
    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");

    PADDLE_ENFORCE(pooling_type == "max" || pooling_type == "ave",
                   "pooling_type should be 'max' or 'ave'");
    PADDLE_ENFORCE(ksize.size() == 2 || ksize.size() == 3,
                   "Pooling ksize should be 2-D or 3-D");

    if (global_pooling == 1) {
53
      for (size_t i = 0; i < ksize.size(); ++i) ksize[i] = in_X->dims()[i + 2];
54 55
    }
    if (ksize.size() == 2) {
56
      PADDLE_ENFORCE_EQ(in_X->dims().size(), 4,
57 58 59 60
                        "Pool2DOp intput should be 4-D.");
      PADDLE_ENFORCE_EQ(strides.size(), 2, "Pool2DOp strides should be 2-D.");
      PADDLE_ENFORCE_EQ(paddings.size(), 2, "Pool2DOp paddings should be 2-D.");
    } else {
61
      PADDLE_ENFORCE_EQ(in_X->dims().size(), 5,
62 63 64 65
                        "Pool3DOp intput should be 5-D.");
      PADDLE_ENFORCE_EQ(strides.size(), 3, "Pool3DOp strides should be 3-D.");
      PADDLE_ENFORCE_EQ(paddings.size(), 3, "Pool3DOp paddings should be 3-D.");
    }
66
    std::vector<int64_t> output_shape({in_X->dims()[0], in_X->dims()[1]});
67
    for (size_t i = 0; i < ksize.size(); ++i) {
68
      output_shape.push_back(outputSize_pool(in_X->dims()[i + 2], ksize[i],
C
chengduoZH 已提交
69
                                             paddings[i], strides[i]));
70
    }
71
    out->Resize(framework::make_ddim(output_shape));
72 73 74 75 76 77 78 79 80
  }
};

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

 protected:
  void InferShape(const framework::InferShapeContext &ctx) const override {
81 82
    auto in = ctx.Input<Tensor>("X");
    auto d_in = ctx.Output<framework::LoDTensor>(framework::GradVarName("X"));
83 84 85 86 87 88 89 90 91
    if (d_in) d_in->Resize(in->dims());
  }
};

class Pool3dOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  Pool3dOpMaker(framework::OpProto *proto, framework::OpAttrChecker *op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput(
92
        "X",
93 94 95 96
        "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 "
        "image.");
97
    AddOutput("Out",
98 99 100
              "The output tensor of pooling operator."
              "The format of output tensor is also NCDHW.");

101 102 103 104 105 106 107
    AddAttr<std::string>("poolingType",
                         "poolingType of pooling operator.['max' or 'ave']");
    AddAttr<std::vector<int>>(
        "ksize", "pooling size(depth, height, width) of pooling operator.");
    AddAttr<int>("globalPooling",
                 "default 0"
                 "whether to use the globalPooling.")
108
        .SetDefault(0);
109 110 111 112
    AddAttr<std::vector<int>>(
        "strides",
        "default {1,1,1}"
        "strides(depth, height, width) of pooling operator.")
113
        .SetDefault({1, 1, 1});
114 115 116 117
    AddAttr<std::vector<int>>(
        "paddings",
        "default {0,0,0}"
        "paddings(depth, height, width) of pooling operator.")
118 119 120
        .SetDefault({0, 0, 0});
    AddComment(R"DOC(
The pooling3d operation calculates the output based on
121
the input, poolingType and ksize, strides, paddings parameters.
122 123 124 125 126 127 128 129 130
)DOC");
  }
};

class Pool2dOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  Pool2dOpMaker(framework::OpProto *proto, framework::OpAttrChecker *op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput(
131
        "X",
132 133 134
        "The input tensor of pooling operator. "
        "The format of input tensor is NCHW. Where N is batch size, C is the "
        "number of channels, H and W is the height and width of image.");
135
    AddOutput("Out",
136 137 138
              "The output tensor of pooling operator."
              "The format of output tensor is also NCHW.");

139 140 141 142 143 144 145
    AddAttr<std::string>("poolingType",
                         "poolingType of pooling operator.['max' or 'ave']");
    AddAttr<std::vector<int>>(
        "ksize", "pooling size(height, width) of pooling operator.");
    AddAttr<int>("globalPooling",
                 "default 0"
                 "whether to use the globalPooling.[0 or 1]")
146
        .SetDefault(0);
147 148 149
    AddAttr<std::vector<int>>("strides",
                              "default {1, 1}"
                              "strides(height, width) of pooling operator.")
150
        .SetDefault({1, 1});
151 152 153
    AddAttr<std::vector<int>>("paddings",
                              "default {0, 0}"
                              "paddings(height, width) of pooling operator.")
154 155 156
        .SetDefault({0, 0});
    AddComment(R"DOC(
The pooling2d operation calculates the output based on
157
the input, poolingType and ksize, strides, paddings parameters.
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
)DOC");
  }
};
}  // 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>);