NormProjectionLayer.cpp 3.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Z
zhangjinchao01 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

Y
Yu Yang 已提交
15
#include "NormProjectionLayer.h"
X
Xin Pan 已提交
16 17
#include "paddle/legacy/utils/Logging.h"
#include "paddle/legacy/utils/Stat.h"
Z
zhangjinchao01 已提交
18 19 20 21 22 23 24 25

namespace paddle {
size_t CMRProjectionNormLayer::getSize() {
  CHECK_EQ(inputLayers_.size(), 1UL);
  size_t layerSize = 0;
  imgSizeH_ = inputLayers_[0]->getOutput().getFrameHeight();
  imgSizeW_ = inputLayers_[0]->getOutput().getFrameWidth();
  if (imgSizeH_ == 0) {
L
Luo Tao 已提交
26
    imgSizeH_ = imgSizeY_;
Z
zhangjinchao01 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
  }
  if (imgSizeW_ == 0) {
    imgSizeW_ = imgSize_;
  }
  outputH_ = imgSizeH_;
  outputW_ = imgSizeW_;
  layerSize = outputH_ * outputW_ * channels_;

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

bool CMRProjectionNormLayer::init(const LayerMap& layerMap,
                                  const ParameterMap& parameterMap) {
  /* Initialize the basic parent class */
  ResponseNormLayer::init(layerMap, parameterMap);

  /* the size of inputs for norm-layer is 1 */
  CHECK_EQ(config_.inputs_size(), 1);

H
hedaoyuan 已提交
48 49 50
  createFunction(
      forward_,
      "CrossMapNormal",
H
hedaoyuan 已提交
51
      FuncConfig().set("size", size_).set("scale", scale_).set("pow", pow_));
H
hedaoyuan 已提交
52 53 54
  createFunction(
      backward_,
      "CrossMapNormalGrad",
H
hedaoyuan 已提交
55 56
      FuncConfig().set("size", size_).set("scale", scale_).set("pow", pow_));

Z
zhangjinchao01 已提交
57 58 59 60 61 62 63 64
  return true;
}

void CMRProjectionNormLayer::forward(PassType passType) {
  Layer::forward(passType);
  /* malloc memory for the output_ if necessary */
  /* note: one sample correspond to one row */
  MatrixPtr input = inputLayers_[0]->getOutputValue();
H
hedaoyuan 已提交
65
  size_t batchSize = input->getHeight();
Z
zhangjinchao01 已提交
66 67 68 69 70
  int size = getSize();
  resetOutput(batchSize, size);

  Matrix::resizeOrCreate(denoms_, batchSize, size, /* trans */ false, useGpu_);

H
hedaoyuan 已提交
71 72
  shape_ = TensorShape({batchSize, channels_, imgSizeH_, imgSizeW_});

73
  // prepare forward arguments
H
hedaoyuan 已提交
74 75
  BufferArgs inputs;
  BufferArgs outputs;
76 77 78
  inputs.addArg(*getInputValue(0), shape_);
  outputs.addArg(*getOutputValue(), shape_, ASSIGN_TO);
  outputs.addArg(*denoms_, shape_, ASSIGN_TO);
H
hedaoyuan 已提交
79

80
  forward_[0]->calc(inputs, outputs);
Z
zhangjinchao01 已提交
81 82 83 84 85
}

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

86
  if (NULL == getInputGrad(0)) {
Z
zhangjinchao01 已提交
87 88 89
    return;
  }

90
  // prepare backward arguments
H
hedaoyuan 已提交
91 92
  BufferArgs inputs;
  BufferArgs outputs;
93 94 95
  inputs.addArg(*getInputValue(0), shape_);
  inputs.addArg(*getOutputValue(), shape_);
  inputs.addArg(*getOutputGrad(), shape_);
H
hedaoyuan 已提交
96
  inputs.addArg(*denoms_, shape_);
97 98 99
  outputs.addArg(*getInputGrad(0), shape_, ADD_TO);

  backward_[0]->calc(inputs, outputs);
Z
zhangjinchao01 已提交
100 101
}
}  // namespace paddle