PadLayer.cpp 3.4 KB
Newer Older
D
dangqingqing 已提交
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 28 29
/* Copyright (c) 2016 PaddlePaddle Authors. 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 "PadLayer.h"
#include "paddle/utils/Stat.h"

namespace paddle {

REGISTER_LAYER(pad, PadLayer);

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

  auto& pad_conf = config_.inputs(0).pad_conf();
  auto& img_conf = pad_conf.image_conf();
  CHECK_EQ(config_.inputs_size(), 1);
D
dangqingqing 已提交
30 31 32 33 34
  inDims_ = TensorShape(
      {0,
       img_conf.channels(),
       img_conf.has_img_size_y() ? img_conf.img_size_y() : img_conf.img_size(),
       img_conf.img_size()});
D
dangqingqing 已提交
35

D
dangqingqing 已提交
36 37 38
  CHECK_EQ(2, pad_conf.pad_c_size());
  CHECK_EQ(2, pad_conf.pad_h_size());
  CHECK_EQ(2, pad_conf.pad_w_size());
Y
Yu Yang 已提交
39 40 41
  padc_ = {pad_conf.pad_c(0), pad_conf.pad_c(1)};
  padh_ = {pad_conf.pad_h(0), pad_conf.pad_h(1)};
  padw_ = {pad_conf.pad_w(0), pad_conf.pad_w(1)};
D
dangqingqing 已提交
42

D
dangqingqing 已提交
43
  outDims_ = TensorShape(4);
D
dangqingqing 已提交
44 45 46 47 48
  setOutDims(0);

  createFunction(forward_,
                 "Pad",
                 FuncConfig()
Y
Yu Yang 已提交
49 50 51
                     .set("channel", padc_)
                     .set("height", padh_)
                     .set("width", padw_));
D
dangqingqing 已提交
52 53 54
  createFunction(backward_,
                 "PadGrad",
                 FuncConfig()
Y
Yu Yang 已提交
55 56 57
                     .set("channel", padc_)
                     .set("height", padh_)
                     .set("width", padw_));
D
dangqingqing 已提交
58 59 60 61

  return true;
}

D
dangqingqing 已提交
62 63 64 65 66
void PadLayer::setOutDims(const size_t batchSize) {
  outDims_.reshape({batchSize,
                    inDims_[1] + padc_[0] + padc_[1],
                    inDims_[2] + padh_[0] + padh_[1],
                    inDims_[3] + padw_[0] + padw_[1]});
D
dangqingqing 已提交
67 68
}

D
dangqingqing 已提交
69
void PadLayer::setTensorDim(const size_t batchSize) {
D
dangqingqing 已提交
70
  CHECK_EQ(static_cast<int>(inputLayers_.size()), 1);
D
dangqingqing 已提交
71
  inDims_.setDim(0, batchSize);
D
dangqingqing 已提交
72
  int h = inputLayers_[0]->getOutput().getFrameHeight();
D
dangqingqing 已提交
73
  if (h != 0) inDims_.setDim(2, h);
D
dangqingqing 已提交
74
  int w = inputLayers_[0]->getOutput().getFrameWidth();
D
dangqingqing 已提交
75
  if (w != 0) inDims_.setDim(3, w);
D
dangqingqing 已提交
76 77 78 79 80 81 82 83 84 85 86 87
  setOutDims(batchSize);
}

void PadLayer::forward(PassType passType) {
  Layer::forward(passType);
  MatrixPtr input = inputLayers_[0]->getOutputValue();
  size_t batchSize = input->getHeight();
  setTensorDim(batchSize);
  int size = outDims_[1] * outDims_[2] * outDims_[3];
  resetOutput(batchSize, size);
  MatrixPtr outV = getOutputValue();
  REGISTER_TIMER_INFO("PadForward", getName().c_str());
D
dangqingqing 已提交
88 89 90 91 92 93

  BufferArgs inputs;
  BufferArgs outputs;
  inputs.addArg(*getInputValue(0), inDims_);
  outputs.addArg(*getOutputValue(), outDims_, ASSIGN_TO);
  forward_[0]->calc(inputs, outputs);
D
dangqingqing 已提交
94 95 96 97 98
}

void PadLayer::backward(const UpdateCallback& callback) {
  (void)callback;
  REGISTER_TIMER_INFO("PadBackward", getName().c_str());
D
dangqingqing 已提交
99 100 101 102 103 104

  BufferArgs inputs;
  BufferArgs outputs;
  inputs.addArg(*getOutputGrad(), outDims_);
  outputs.addArg(*getInputGrad(0), inDims_, ADD_TO);
  backward_[0]->calc(inputs, outputs);
D
dangqingqing 已提交
105 106
}
}  // namespace paddle