PoolProjection.cpp 5.7 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
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();
39 40

  excludeMode_ = conf.has_exclude_mode() ? conf.exclude_mode() : true;
Q
qijun 已提交
41 42 43 44 45 46 47 48 49 50 51 52
}

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();
  }
53 54 55 56
  outputY_ = outputSize(imgSizeY_,
                        sizeY_,
                        confPaddingY_,
                        strideY_,
Q
qijun 已提交
57
                        /* caffeMode */ false);
58 59 60 61
  outputX_ = outputSize(imgSize_,
                        sizeX_,
                        confPadding_,
                        stride_,
Q
qijun 已提交
62 63 64 65 66 67 68 69
                        /* caffeMode */ false);

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

  return outputY_ * outputX_ * channels_;
}

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

void MaxPoolProjection::forward() {
Q
qijun 已提交
85 86
  size_t width = getSize();
  CHECK_EQ(width, out_->value->getWidth());
Q
qijun 已提交
87 88
  MatrixPtr inputV = in_->value;
  MatrixPtr outV = out_->value;
89 90 91 92 93 94 95 96 97 98 99
  outV->maxPoolForward(*inputV,
                       imgSizeY_,
                       imgSize_,
                       channels_,
                       sizeX_,
                       sizeY_,
                       strideY_,
                       stride_,
                       outputY_,
                       outputX_,
                       confPaddingY_,
Q
qijun 已提交
100
                       confPadding_);
Q
qijun 已提交
101 102 103 104 105 106 107 108 109 110 111 112
}

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;
  }
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
  inputGrad->maxPoolBackward(*inputV,
                             imgSizeY_,
                             imgSize_,
                             *outGrad,
                             *outV,
                             sizeX_,
                             sizeY_,
                             strideY_,
                             stride_,
                             outputY_,
                             outputX_,
                             1,
                             1,
                             confPaddingY_,
                             confPadding_);
Q
qijun 已提交
128 129 130
}

void AvgPoolProjection::forward() {
Q
qijun 已提交
131 132
  size_t width = getSize();
  CHECK_EQ(width, out_->value->getWidth());
Q
qijun 已提交
133 134
  MatrixPtr inputV = in_->value;
  MatrixPtr outV = out_->value;
135 136 137 138 139 140 141 142 143 144 145
  outV->avgPoolForward(*inputV,
                       imgSizeY_,
                       imgSize_,
                       channels_,
                       sizeX_,
                       sizeY_,
                       strideY_,
                       stride_,
                       outputY_,
                       outputX_,
                       confPaddingY_,
146 147
                       confPadding_,
                       excludeMode_);
Q
qijun 已提交
148 149 150 151 152 153 154 155 156 157 158 159
}

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

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

  if (NULL == inputGrad) {
    return;
  }

160 161 162 163 164 165 166 167 168 169 170 171
  inputGrad->avgPoolBackward(*outputGrad,
                             imgSizeY_,
                             imgSize_,
                             sizeX_,
                             sizeY_,
                             strideY_,
                             stride_,
                             outputY_,
                             outputX_,
                             1,
                             1,
                             confPaddingY_,
172 173
                             confPadding_,
                             excludeMode_);
Q
qijun 已提交
174 175
}
}  // namespace paddle