PoolProjection.cpp 5.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 39 40 41 42 43 44 45 46 47 48 49 50
    : 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();
}

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

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

  return outputY_ * outputX_ * channels_;
}

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

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

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

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

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

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

  if (NULL == inputGrad) {
    return;
  }

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