PoolProjectionLayer.cpp 3.4 KB
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/* Copyright (c) 2016 Baidu, Inc. 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/utils/Logging.h"
#include "paddle/utils/Stat.h"
#include "PoolProjectionLayer.h"

namespace paddle {

size_t PoolProjectionLayer::getSize() {
  CHECK_EQ(inputLayers_.size(), 1UL);
  size_t layerSize = 0;
  imgSizeH_ = inputLayers_[0]->getOutput().getFrameHeight();
  imgSizeW_ = inputLayers_[0]->getOutput().getFrameWidth();
  if (imgSizeH_ == 0) {
28
    imgSizeH_ = imgSizeY_;
Z
zhangjinchao01 已提交
29 30 31 32
  }
  if (imgSizeW_ == 0) {
    imgSizeW_ = imgSize_;
  }
33 34 35 36

  outputH_ = outputSize(imgSizeH_, sizeY_, confPaddingY_, strideY_);
  outputW_ = outputSize(imgSizeW_, sizeX_, confPadding_, stride_);

Z
zhangjinchao01 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
  layerSize = outputH_ * outputW_ * channels_;

  getOutput().setFrameHeight(outputH_);
  getOutput().setFrameWidth(outputW_);
  return layerSize;
}

void MaxPoolProjectionLayer::forward(PassType passType) {
  Layer::forward(passType);

  /* malloc memory for the output_ if necessary */
  /* note: one sample correspond to one ROW */
  MatrixPtr input = getInputValue(0);
  int batchSize = input->getHeight();
  int size = getSize();
  resetOutput(batchSize, size);

  MatrixPtr outV = getOutputValue();

56 57 58
  outV->maxPoolForward(*input, imgSizeH_, imgSizeW_, channels_,
                       sizeX_, sizeY_, strideY_, stride_,
                       outputH_, outputW_, confPaddingY_, confPadding_);
Z
zhangjinchao01 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
}

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

  if (NULL == getInputGrad(0)) {
    return;
  }

  /* Do derivation */
  MatrixPtr outGrad = getOutputGrad();
  MatrixPtr inputV = getInputValue(0);
  MatrixPtr outV = getOutputValue();
  MatrixPtr inputGrad = getInputGrad(0);

  inputGrad->maxPoolBackward(*inputV, imgSizeH_, imgSizeW_, *outGrad, *outV,
75 76 77
                             sizeX_, sizeY_,
                             strideY_, stride_, outputH_, outputW_, 1, 1,
                             confPaddingY_, confPadding_);
Z
zhangjinchao01 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91
}

void AvgPoolProjectionLayer::forward(PassType passType) {
  Layer::forward(passType);

  /* malloc memory for the output_ if necessary */
  /* note: one sample correspond to one ROW */
  MatrixPtr input = getInputValue(0);
  int batchSize = input->getHeight();
  int size = getSize();
  resetOutput(batchSize, size);

  MatrixPtr outV = getOutputValue();

92 93 94
  outV->avgPoolForward(*input, imgSizeH_, imgSizeW_, channels_,
                       sizeX_, sizeY_, strideY_, stride_,
                       outputH_, outputW_, confPaddingY_, confPadding_);
Z
zhangjinchao01 已提交
95 96 97 98 99 100 101 102 103 104 105
}

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

  if (NULL == getInputGrad(0)) {
    return;
  }
  /* Do derivation */
  MatrixPtr outputGrad = getOutputGrad();
  MatrixPtr inputGrad = getInputGrad(0);
106 107 108 109
  inputGrad->avgPoolBackward(*outputGrad, imgSizeH_, imgSizeW_,
                             sizeX_, sizeY_, strideY_, stride_,
                             outputH_, outputW_, 1, 1,
                             confPaddingY_, confPadding_);
Z
zhangjinchao01 已提交
110 111
}
}  // namespace paddle