PoolProjection.cpp 6.5 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
Q
qijun 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

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 "PoolProjection.h"

namespace paddle {

Q
qijun 已提交
19
REGISTER_PROJECTION_CREATE_FUNC(pool, &PoolProjection::create);
Q
qijun 已提交
20

Q
qijun 已提交
21
PoolProjection::PoolProjection(const ProjectionConfig& config,
22 23
                               ParameterPtr parameter,
                               bool useGpu)
Q
qijun 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
    : Projection(config, parameter, useGpu) {
  const PoolConfig& conf = config_.pool_conf();
  poolType_ = conf.pool_type();
  channels_ = conf.channels();
  sizeX_ = conf.size_x();
  stride_ = conf.stride();
  outputX_ = conf.output_x();
  imgSize_ = conf.img_size();
  confPadding_ = conf.padding();

  sizeY_ = conf.has_size_y() ? conf.size_y() : conf.size_x();
  imgSizeY_ = conf.has_img_size_y() ? conf.img_size_y() : conf.img_size();
  strideY_ = conf.has_stride_y() ? conf.stride_y() : conf.stride();
  confPaddingY_ = conf.has_padding_y() ? conf.padding_y() : conf.padding();
  outputY_ = conf.has_output_y() ? conf.output_y() : conf.output_x();
X
xzl 已提交
39 40 41 42
  with_mask_ = false;
  if (poolType_ == "max-pool-with-mask") {
    with_mask_ = true;
  }
Q
qijun 已提交
43 44 45 46 47 48 49 50 51 52 53 54
}

size_t PoolProjection::getSize() {
  imgSizeY_ = in_->getFrameHeight();
  imgSize_ = in_->getFrameWidth();
  const PoolConfig& conf = config_.pool_conf();
  if (imgSizeY_ == 0) {
    imgSizeY_ = conf.has_img_size_y() ? conf.img_size_y() : conf.img_size();
  }
  if (imgSize_ == 0) {
    imgSize_ = conf.img_size();
  }
55 56 57 58
  outputY_ = outputSize(imgSizeY_,
                        sizeY_,
                        confPaddingY_,
                        strideY_,
Q
qijun 已提交
59
                        /* caffeMode */ false);
60 61 62 63
  outputX_ = outputSize(imgSize_,
                        sizeX_,
                        confPadding_,
                        stride_,
Q
qijun 已提交
64 65 66 67 68 69 70 71
                        /* caffeMode */ false);

  const_cast<Argument*>(out_)->setFrameHeight(outputY_);
  const_cast<Argument*>(out_)->setFrameWidth(outputX_);

  return outputY_ * outputX_ * channels_;
}

Q
qijun 已提交
72
PoolProjection* PoolProjection::create(const ProjectionConfig& config,
73 74
                                       ParameterPtr parameter,
                                       bool useGpu) {
Q
qijun 已提交
75
  const std::string& pool = config.pool_conf().pool_type();
76
  if (pool == "max-projection") {
Q
qijun 已提交
77
    return new MaxPoolProjection(config, parameter, useGpu);
78
  } else if (pool == "avg-projection") {
Q
qijun 已提交
79
    return new AvgPoolProjection(config, parameter, useGpu);
X
xzl 已提交
80 81
  } else if (pool == "max-pool-with-mask") {
    return new MaxPoolProjection(config, parameter, useGpu);
Q
qijun 已提交
82 83 84 85 86 87 88
  } else {
    LOG(FATAL) << "Unknown pool type: " << pool;
    return nullptr;
  }
}

void MaxPoolProjection::forward() {
Q
qijun 已提交
89 90
  size_t width = getSize();
  CHECK_EQ(width, out_->value->getWidth());
Q
qijun 已提交
91 92
  MatrixPtr inputV = in_->value;
  MatrixPtr outV = out_->value;
X
xzl 已提交
93 94 95 96
  MatrixPtr maskV = out_->value;
  if (with_mask_) {
    maskV = mask_->value;
  }
97 98 99 100 101 102 103 104 105 106 107
  outV->maxPoolForward(*inputV,
                       imgSizeY_,
                       imgSize_,
                       channels_,
                       sizeX_,
                       sizeY_,
                       strideY_,
                       stride_,
                       outputY_,
                       outputX_,
                       confPaddingY_,
X
xzl 已提交
108 109 110
                       confPadding_,
                       maskV,
                       with_mask_);
Q
qijun 已提交
111 112 113 114 115 116 117 118 119 120 121 122
}

void MaxPoolProjection::backward(const UpdateCallback& callback) {
  (void)callback;
  MatrixPtr outGrad = out_->grad;
  MatrixPtr inputV = in_->value;
  MatrixPtr outV = out_->value;
  MatrixPtr inputGrad = in_->grad;

  if (NULL == inputGrad) {
    return;
  }
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
  inputGrad->maxPoolBackward(*inputV,
                             imgSizeY_,
                             imgSize_,
                             *outGrad,
                             *outV,
                             sizeX_,
                             sizeY_,
                             strideY_,
                             stride_,
                             outputY_,
                             outputX_,
                             1,
                             1,
                             confPaddingY_,
                             confPadding_);
Q
qijun 已提交
138 139 140
}

void AvgPoolProjection::forward() {
Q
qijun 已提交
141 142
  size_t width = getSize();
  CHECK_EQ(width, out_->value->getWidth());
Q
qijun 已提交
143 144
  MatrixPtr inputV = in_->value;
  MatrixPtr outV = out_->value;
145 146 147 148 149 150 151 152 153 154 155
  outV->avgPoolForward(*inputV,
                       imgSizeY_,
                       imgSize_,
                       channels_,
                       sizeX_,
                       sizeY_,
                       strideY_,
                       stride_,
                       outputY_,
                       outputX_,
                       confPaddingY_,
Q
qijun 已提交
156
                       confPadding_);
Q
qijun 已提交
157 158 159 160 161 162 163 164 165 166 167 168
}

void AvgPoolProjection::backward(const UpdateCallback& callback) {
  (void)callback;

  MatrixPtr outputGrad = out_->grad;
  MatrixPtr inputGrad = in_->grad;

  if (NULL == inputGrad) {
    return;
  }

169 170 171 172 173 174 175 176 177 178 179 180 181
  inputGrad->avgPoolBackward(*outputGrad,
                             imgSizeY_,
                             imgSize_,
                             sizeX_,
                             sizeY_,
                             strideY_,
                             stride_,
                             outputY_,
                             outputX_,
                             1,
                             1,
                             confPaddingY_,
                             confPadding_);
Q
qijun 已提交
182
}
X
xzl 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204

void MaxWithMaskPoolProjection::forward() {
  size_t width = getSize();
  CHECK_EQ(width, out_->value->getWidth());
  MatrixPtr inputV = in_->value;
  MatrixPtr outV = out_->value;
  MatrixPtr maskV = mask_->value;
  outV->maxPoolForward(*inputV,
                       imgSizeY_,
                       imgSize_,
                       channels_,
                       sizeX_,
                       sizeY_,
                       strideY_,
                       stride_,
                       outputY_,
                       outputX_,
                       confPaddingY_,
                       confPadding_,
                       maskV,
                       with_mask_);
}
Q
qijun 已提交
205
}  // namespace paddle