ScalingProjection.cpp 1.8 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
X
xuwei06 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

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 "Projection.h"

namespace paddle {

class ScalingProjection : public Projection {
W
Wu Yi 已提交
20
 public:
X
xuwei06 已提交
21
  ScalingProjection(const ProjectionConfig& config,
22 23
                    const ParameterPtr& parameter,
                    bool useGpu)
X
xuwei06 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36
      : Projection(config, parameter, useGpu) {
    CHECK_EQ(parameter->getSize(), 1UL);
    weight_.reset(new Weight(1, 1, parameter));
  }

  void forward() {
    CHECK(in_->value);
    out_->value->add(*in_->value, weight_->getW()->getElement(0, 0));
  }

  void backward(const UpdateCallback& callback) {
    if (weight_->getWGrad()) {
      auto sum = Matrix::create(in_->value->getHeight(), 1, false, useGpu_);
37 38 39 40
      sum->sumOfProducts(*in_->value,
                         *out_->grad,
                         /* scaleSum= */ 1,
                         /* scaleDest= */ 0);
X
xuwei06 已提交
41
      weight_->getWGrad()->sumCols(*sum,
42 43
                                   /* scaleSum= */ 1,
                                   /* scaleDest= */ 1);
X
xuwei06 已提交
44 45 46 47 48 49 50
      parameter_->incUpdate(callback);
    }
    if (in_->grad) {
      in_->grad->add(*out_->grad, weight_->getW()->getElement(0, 0));
    }
  }

W
Wu Yi 已提交
51
 protected:
X
xuwei06 已提交
52 53 54 55 56 57
  std::unique_ptr<Weight> weight_;
};

REGISTER_PROJECTION(scaling, ScalingProjection);

}  // namespace paddle