lamb_op.cc 10.6 KB
Newer Older
Y
Yibing Liu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.

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 "paddle/fluid/operators/optimizers/lamb_op.h"
16

17
#include <string>
18

19
#include "paddle/fluid/framework/op_version_registry.h"
Y
Yibing Liu 已提交
20 21 22 23

namespace paddle {
namespace operators {

A
Aurelius84 已提交
24 25 26 27
class LambOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

28
  void InferShape(framework::InferShapeContext *ctx) const override {
29 30
    PADDLE_ENFORCE_EQ(ctx->HasInput("Param"),
                      true,
A
Aurelius84 已提交
31 32
                      platform::errors::NotFound(
                          "Input(Param) of LambOp should not be null."));
33 34
    PADDLE_ENFORCE_EQ(ctx->HasInput("Grad"),
                      true,
A
Aurelius84 已提交
35 36
                      platform::errors::NotFound(
                          "Input(Grad) of LambOp should not be null."));
37 38
    PADDLE_ENFORCE_EQ(ctx->HasInput("Moment1"),
                      true,
A
Aurelius84 已提交
39 40
                      platform::errors::NotFound(
                          "Input(Moment1) of LambOp should not be null."));
41 42
    PADDLE_ENFORCE_EQ(ctx->HasInput("Moment2"),
                      true,
A
Aurelius84 已提交
43 44
                      platform::errors::NotFound(
                          "Input(Moment2) of LambOp should not be null."));
45 46
    PADDLE_ENFORCE_EQ(ctx->HasInput("LearningRate"),
                      true,
A
Aurelius84 已提交
47 48
                      platform::errors::NotFound(
                          "Input(LearningRate) of LambOp should not be null."));
49 50
    PADDLE_ENFORCE_EQ(ctx->HasInput("Beta1Pow"),
                      true,
A
Aurelius84 已提交
51 52
                      platform::errors::NotFound(
                          "Input(Beta1Pow) of LambOp should not be null."));
53 54
    PADDLE_ENFORCE_EQ(ctx->HasInput("Beta2Pow"),
                      true,
A
Aurelius84 已提交
55 56 57
                      platform::errors::NotFound(
                          "Input(Beta2Pow) of LambOp should not be null."));

58 59
    PADDLE_ENFORCE_EQ(ctx->HasOutput("ParamOut"),
                      true,
A
Aurelius84 已提交
60 61
                      platform::errors::NotFound(
                          "Output(ParamOut) of LambOp should not be null."));
62 63
    PADDLE_ENFORCE_EQ(ctx->HasOutput("Moment1Out"),
                      true,
A
Aurelius84 已提交
64 65
                      platform::errors::NotFound(
                          "Output(Moment1Out) of LambOp should not be null."));
66 67
    PADDLE_ENFORCE_EQ(ctx->HasOutput("Moment2Out"),
                      true,
A
Aurelius84 已提交
68 69
                      platform::errors::NotFound(
                          "Output(Moment2Out) of LambOp should not be null."));
70 71
    PADDLE_ENFORCE_EQ(ctx->HasOutput("Beta1PowOut"),
                      true,
72 73
                      platform::errors::NotFound(
                          "Output(Beta1PowOut) of LambOp should not be null."));
74 75
    PADDLE_ENFORCE_EQ(ctx->HasOutput("Beta2PowOut"),
                      true,
76 77
                      platform::errors::NotFound(
                          "Output(Beta2PowOut) of LambOp should not be null."));
A
Aurelius84 已提交
78 79 80

    auto lr_dims = ctx->GetInputDim("LearningRate");
    PADDLE_ENFORCE_NE(
81 82
        phi::product(lr_dims),
        0,
A
Aurelius84 已提交
83 84 85 86 87 88
        platform::errors::InvalidArgument(
            "The number of LearningRate shall not be 0, but received %d. Maybe "
            "the Input variable LearningRate has not "
            "been initialized. You may need to confirm "
            "if you put exe.run(startup_program) "
            "after optimizer.minimize function.",
89
            phi::product(lr_dims)));
A
Aurelius84 已提交
90
    PADDLE_ENFORCE_EQ(
91 92
        phi::product(lr_dims),
        1,
A
Aurelius84 已提交
93 94
        platform::errors::InvalidArgument(
            "Learning rate should have 1 dimension, but received %d.",
95
            phi::product(lr_dims)));
A
Aurelius84 已提交
96
    auto beta1_pow_dims = ctx->GetInputDim("Beta1Pow");
97 98
    PADDLE_ENFORCE_GE(phi::product(beta1_pow_dims),
                      1,
A
Aurelius84 已提交
99 100 101
                      platform::errors::InvalidArgument(
                          "The size of Beta1 power accumulator should be "
                          "greater than 0, but received %d.",
102
                          phi::product(beta1_pow_dims)));
A
Aurelius84 已提交
103
    auto beta2_pow_dims = ctx->GetInputDim("Beta2Pow");
104 105
    PADDLE_ENFORCE_GE(phi::product(beta2_pow_dims),
                      1,
A
Aurelius84 已提交
106 107 108
                      platform::errors::InvalidArgument(
                          "The size of Beta2 power accumulator should be "
                          "greater than 0, but received %d.",
109
                          phi::product(beta2_pow_dims)));
A
Aurelius84 已提交
110 111 112 113 114

    auto param_dims = ctx->GetInputDim("Param");
    if (ctx->GetInputsVarType("Grad")[0] ==
        framework::proto::VarType::LOD_TENSOR) {
      PADDLE_ENFORCE_EQ(
115 116
          param_dims,
          ctx->GetInputDim("Grad"),
A
Aurelius84 已提交
117 118 119
          platform::errors::InvalidArgument(
              "Param and Grad input of LambOp should have same dimension. But "
              "received Param dims: [%s], Grad dims: [%s].",
120 121
              param_dims,
              ctx->GetInputDim("Grad")));
A
Aurelius84 已提交
122 123
    }
    PADDLE_ENFORCE_EQ(
124 125
        param_dims,
        ctx->GetInputDim("Moment1"),
A
Aurelius84 已提交
126 127 128
        platform::errors::InvalidArgument(
            "Param and Moment1 input of LambOp should have same dimension. But "
            "received Param dims: [%s], Moment1 dims: [%s].",
129 130
            param_dims,
            ctx->GetInputDim("Moment1")));
A
Aurelius84 已提交
131
    PADDLE_ENFORCE_EQ(
132 133
        param_dims,
        ctx->GetInputDim("Moment2"),
A
Aurelius84 已提交
134 135 136
        platform::errors::InvalidArgument(
            "Param and Moment2 input of LambOp should have same dimension. But "
            "received Param dims: [%s], Moment2 dims: [%s].",
137 138
            param_dims,
            ctx->GetInputDim("Moment2")));
A
Aurelius84 已提交
139 140 141 142

    ctx->SetOutputDim("ParamOut", param_dims);
    ctx->SetOutputDim("Moment1Out", param_dims);
    ctx->SetOutputDim("Moment2Out", param_dims);
143 144
    ctx->SetOutputDim("Beta1PowOut", beta1_pow_dims);
    ctx->SetOutputDim("Beta2PowOut", beta2_pow_dims);
A
Aurelius84 已提交
145 146 147
  }

  framework::OpKernelType GetExpectedKernelType(
148
      const framework::ExecutionContext &ctx) const {
A
Aurelius84 已提交
149 150 151 152
    auto input_data_type =
        OperatorWithKernel::IndicateVarDataType(ctx, "Param");
    return framework::OpKernelType(input_data_type, ctx.GetPlace());
  }
153
  framework::OpKernelType GetKernelTypeForVar(
154 155
      const std::string &var_name,
      const framework::Tensor &tensor,
156 157 158 159
      const framework::OpKernelType &expected_kernel_type) const {
    if (var_name == "Beta1Pow" || var_name == "Beta2Pow") {
      return expected_kernel_type;
    } else {
160 161
      return framework::OpKernelType(
          expected_kernel_type.data_type_, tensor.place(), tensor.layout());
162 163
    }
  }
A
Aurelius84 已提交
164 165
};

Y
Yibing Liu 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179
class LambOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  void Make() override {
    AddInput("Param",
             "(LoDTensor, default LoDTensor<float>) "
             "Input parameter that has to be updated.");
    AddInput("Grad",
             "(LoDTensor, default LoDTensor<float>) "
             "Input gradient of the parameter.");
    AddInput("LearningRate", "(Tensor) Learning rate.");
    AddInput("Moment1", "(Tensor) Input first moment.");
    AddInput("Moment2", "(Tensor) Input second moment.");
    AddInput("Beta1Pow", "(Tensor) Input beta1 power accumulator.");
    AddInput("Beta2Pow", "(Tensor) Input beta2 power accumulator.");
180 181 182 183 184 185 186 187
    AddInput("MasterParam",
             "(LoDTensor, default LoDTensor<float>) "
             "Input master parameter that has to be updated.")
        .AsDispensable();
    AddInput(
        "SkipUpdate",
        "(Tensor) Input tensor to determine whether to update the parameter.")
        .AsDispensable();
Y
Yibing Liu 已提交
188 189 190 191

    AddOutput("ParamOut", "(Tensor) Output parameter.");
    AddOutput("Moment1Out", "(Tensor) Output first moment.");
    AddOutput("Moment2Out", "(Tensor) Output second moment.");
192 193 194 195
    AddOutput("Beta1PowOut", "(Tensor) Output beta1 power accumulator")
        .AsDispensable();
    AddOutput("Beta2PowOut", "(Tensor) Output beta2 power accumulator")
        .AsDispensable();
196 197
    AddOutput("MasterParamOut", "(Tensor) Output master parameter.")
        .AsDispensable();
Y
Yibing Liu 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210
    AddAttr<float>("weight_decay", "(float) Weight decay rate.");
    AddAttr<float>("beta1",
                   "(float, default 0.9) The exponential decay rate for the "
                   "1st moment estimates.")
        .SetDefault(0.9);
    AddAttr<float>("beta2",
                   "(float, default 0.999) The exponential decay rate for the "
                   "2nd moment estimates.")
        .SetDefault(0.999);
    AddAttr<float>("epsilon",
                   "(float, default 1.0e-6) "
                   "Constant for numerical stability.")
        .SetDefault(1.0e-6f);
211 212 213 214
    AddAttr<bool>(
        "multi_precision",
        "(bool, default false) Whether to enable multi-precision mode.")
        .SetDefault(false);
Y
Yibing Liu 已提交
215 216 217 218 219 220 221 222 223 224 225

    AddComment(R"DOC(
LAMB (Layer-wise Adaptive Moments optimizer for Batching training) Optimizer.

LAMB Optimizer is designed to scale up the batch size of training without losing 
accuracy, which supports adaptive element-wise updating and accurate layer-wise 
correction. For more information, please refer to https://arxiv.org/abs/1904.00962.

The updating of parameters follows:

$$
Y
Yibing Liu 已提交
226
m_t &= \beta_1 m_{t - 1}+ (1 - \beta_1)g_t \\
Y
Yibing Liu 已提交
227

Y
Yibing Liu 已提交
228
v_t &= \beta_2 v_{t - 1}  + (1 - \beta_2)g_t^2 \\
Y
Yibing Liu 已提交
229

230 231 232 233
m_t &= \frac{m_t}{\beta_1^t} \\

v_t &= \frac{v_t}{\beta_2^t} \\

Y
Yibing Liu 已提交
234
r_t &= \frac{m_t}{\sqrt{v_t}+\epsilon} \\
Y
Yibing Liu 已提交
235

Y
Yibing Liu 已提交
236
w_t &= w_{t-1} -\eta_t \frac{\left \| w_{t-1}\right \|}{\left \| r_t + \lambda w_{t-1}\right \|} (r_t + \lambda w_{t-1})
Y
Yibing Liu 已提交
237 238 239 240 241 242 243 244 245 246 247 248
$$

where $m$ is the 1st moment, and $v$ the 2nd moment, $\eta$ the 
learning rate, $\lambda$ the weight decay rate.
)DOC");
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
A
Aurelius84 已提交
249
REGISTER_OP_WITHOUT_GRADIENT(lamb, ops::LambOp, ops::LambOpMaker);
L
Leo Chen 已提交
250 251 252
REGISTER_OP_CPU_KERNEL(lamb,
                       ops::LambOpKernel<phi::CPUContext, float>,
                       ops::LambOpKernel<phi::CPUContext, double>);
253 254

/* ==========================  register checkpoint ===========================*/
255 256 257 258 259 260 261 262 263
REGISTER_OP_VERSION(lamb).AddCheckpoint(
    R"ROC(Upgrade lamb, add two new outputs [Beta1PowOut] and [Beta2PowOut].)ROC",
    paddle::framework::compatible::OpVersionDesc()
        .NewInput("Beta1PowOut",
                  "The Output beta1 power accumulator. 'Beta1PowOut' is "
                  "dispensable.")
        .NewInput("Beta2PowOut",
                  "The Output beta2 power accumulator. 'Beta2PowOut' is "
                  "dispensable."));