rmsprop_op.h 2.4 KB
Newer Older
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 30
/* 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. */

#pragma once
#include "paddle/framework/eigen.h"
#include "paddle/framework/op_registry.h"

namespace paddle {
namespace operators {

using Tensor = framework::Tensor;
template <typename T, int MajorType = Eigen::RowMajor,
          typename IndexType = Eigen::DenseIndex>
using EigenVector = framework::EigenVector<T, MajorType, IndexType>;

template <typename Place, typename T>
class RmspropOpKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
31 32 33
    auto* param_out = ctx.Output<Tensor>("ParamOut");
    auto* moment_out = ctx.Output<Tensor>("MomentOut");
    auto* mean_square_out = ctx.Output<Tensor>("MeanSquareOut");
34

35 36
    auto grad = ctx.Input<Tensor>("Grad");

37 38
    param_out->mutable_data<T>(ctx.GetPlace());
    moment_out->mutable_data<T>(ctx.GetPlace());
39
    mean_square_out->mutable_data<T>(ctx.GetPlace());
40 41

    float epsilon = ctx.Attr<float>("epsilon");
42 43
    float rho = ctx.Attr<float>("decay");
    float momentum = ctx.Attr<float>("momentum");
44 45

    auto p = EigenVector<T>::Flatten(*ctx.Input<Tensor>("Param"));
46
    auto ms = EigenVector<T>::Flatten(*ctx.Input<Tensor>("MeanSquare"));
47 48
    auto lr = EigenVector<T>::Flatten(*ctx.Input<Tensor>("LearningRate"));
    auto g = EigenVector<T>::Flatten(*grad);
49 50
    auto mom = EigenVector<T>::Flatten(*ctx.Input<Tensor>("Moment"));

51
    auto p_out = EigenVector<T>::Flatten(*param_out);
52 53
    auto mom_out = EigenVector<T>::Flatten(*moment_out);
    auto ms_out = EigenVector<T>::Flatten(*mean_square_out);
54 55
    auto place = ctx.GetEigenDevice<Place>();

56 57
    Eigen::DSizes<int, 1> grad_dsize(grad->numel());

58
    ms_out.device(place) = rho * ms + (1 - rho) * g * g;
59 60 61
    mom_out.device(place) =
        momentum * mom +
        lr.broadcast(grad_dsize) * g / (ms_out + epsilon).sqrt();
62
    p_out.device(place) = p - mom_out;
63 64 65 66 67
  }
};

}  // namespace operators
}  // namespace paddle