momentum_op.cc 3.1 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
S
sidgoyal78 已提交
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. */

W
Wu Yi 已提交
15
#include "paddle/fluid/operators/optimizers/momentum_op.h"
S
sidgoyal78 已提交
16 17 18 19

namespace paddle {
namespace operators {

D
dzhwinter 已提交
20 21
using Tensor = framework::Tensor;

22 23
class MomentumOpInferVarType : public framework::VarTypeInference {
 public:
M
minqiyang 已提交
24 25 26 27 28 29
  void operator()(framework::InferVarTypeContext* ctx) const override {
    auto& input_var = ctx->Input("Param")[0];
    for (auto& out_var : ctx->Output("ParamOut")) {
      if (ctx->GetType(input_var) == framework::proto::VarType::SELECTED_ROWS) {
        ctx->SetType(out_var, framework::proto::VarType::SELECTED_ROWS);
      } else if (ctx->GetType(input_var) ==
D
dzhwinter 已提交
30
                 framework::proto::VarType::LOD_TENSOR) {
M
minqiyang 已提交
31
        ctx->SetType(out_var, framework::proto::VarType::LOD_TENSOR);
D
dzhwinter 已提交
32 33 34
      } else {
        PADDLE_THROW(
            "Only support LodTensor and SelectedRows, Unexpected Input Type.");
35 36 37 38 39
      }
    }
  }
};

40 41 42 43 44 45 46 47 48 49 50 51 52 53
void MomentumOpMaker::Make() {
  AddInput("Param",
           "(Tensor, default Tensor<float>) "
           "Input parameter that has to be updated");
  AddInput("Grad",
           "(Tensor, default Tensor<float>) "
           "Input gradient of the parameter");
  AddInput("Velocity",
           "(Tensor, default Tensor<float>) "
           "Input velocity (corresponding to the parameter) "
           "that has to be updated");
  AddInput("LearningRate",
           "(Tensor, default Tensor<float>) "
           "Input learning rate");
S
sidgoyal78 已提交
54

55 56 57 58 59 60
  AddOutput("ParamOut",
            "(Tensor) This output is updated parameter. "
            "It shared memory with Input(Param).");
  AddOutput("VelocityOut",
            "(Tensor) This output is updated velocity. "
            "It shared memory with Input(Velocity).");
S
sidgoyal78 已提交
61

62 63 64 65 66 67
  AddAttr<float>("mu", "(float) Momentum coefficient");
  AddAttr<bool>("use_nesterov",
                "(bool, default false) "
                "Use Nesterov Momentum")
      .SetDefault(false);
  AddComment(R"DOC(
K
kexinzhao 已提交
68 69 70 71 72 73 74 75
Momentum Optimizer.

This optimizer has a flag for Nestrov Momentum.
The update equations are as follows:

$$
velocity = mu * velocity + gradient \\
if (use\_nesterov):   \\
76
  param = param - (gradient + mu * velocity) * learning\_rate \\
K
kexinzhao 已提交
77 78 79
else:   \\
  param = param - learning\_rate * velocity. \\
$$
S
sidgoyal78 已提交
80 81

)DOC");
82 83
}

S
sidgoyal78 已提交
84 85 86 87
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
88 89 90
REGISTER_OPERATOR(momentum, ops::MomentumOp, ops::MomentumOpMaker,
                  paddle::framework::EmptyGradOpMaker,
                  ops::MomentumOpInferVarType);
D
dzhwinter 已提交
91 92 93
REGISTER_OP_CPU_KERNEL(
    momentum, ops::MomentumOpKernel<paddle::platform::CPUDeviceContext, float>,
    ops::MomentumOpKernel<paddle::platform::CPUDeviceContext, double>);