average_accumulates_op.cc 5.6 KB
Newer Older
W
wanghaoshuang 已提交
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
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. */

15 16 17 18 19
#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/op_registry.h"

#include "paddle/fluid/framework/infershape_utils.h"
#include "paddle/phi/infermeta/multiary.h"
20 21 22 23 24 25 26 27 28 29 30

namespace paddle {
namespace operators {

class AverageAccumulatesOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
  framework::OpKernelType GetExpectedKernelType(
      const framework::ExecutionContext& ctx) const override {
31 32
    return framework::OpKernelType(
        OperatorWithKernel::IndicateVarDataType(ctx, "param"), ctx.GetPlace());
33 34 35 36 37
  }
};

class AverageAccumulatesOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
38
  void Make() override {
W
wanghaoshuang 已提交
39
    AddInput("param", "(Tensor), The parameter to be accumulated.");
W
wanghaoshuang 已提交
40
    AddInput("in_sum_1",
W
wanghaoshuang 已提交
41
             "(Tensor), A tensor used to store the parameter "
W
wanghaoshuang 已提交
42 43
             "sums with the same shape as input(param).");
    AddInput("in_sum_2",
W
wanghaoshuang 已提交
44
             "(Tensor), A auxiliary tensor to help "
W
wanghaoshuang 已提交
45 46 47 48
             "accumulating sums of parameter values with the same shape as "
             "input(param). It is used to avoid loss of precision due to too "
             "many sums.");
    AddInput("in_sum_3",
W
wanghaoshuang 已提交
49
             "(Tensor), A auxiliary tensor to help "
W
wanghaoshuang 已提交
50 51 52
             "accumulating sums of parameter values with the same shape as "
             "input(param).");
    AddInput("in_num_accumulates",
W
wanghaoshuang 已提交
53
             "(Tensor<int64_t>), The accumulating times of current window with "
W
wanghaoshuang 已提交
54
             "shape [1].");
W
wanghaoshuang 已提交
55 56 57 58
    AddInput(
        "in_old_num_accumulates",
        "(Tensor<int64_t>), The accumulating times of previous window with "
        "shape [1].");
W
wanghaoshuang 已提交
59
    AddInput("in_num_updates",
T
tianshuo78520a 已提交
60
             "(Tensor<int64_t>), The total number of batches used by training "
W
wanghaoshuang 已提交
61 62 63
             "before this batch with shape [1].");

    AddOutput("out_sum_1",
W
wanghaoshuang 已提交
64
              "(Tensor), A tensor used to store the "
W
wanghaoshuang 已提交
65 66
              "parameter sums with the same shape as input(param).");
    AddOutput("out_sum_2",
W
wanghaoshuang 已提交
67
              "(Tensor), A auxiliary tensor to help "
W
wanghaoshuang 已提交
68 69 70 71
              "accumulating sums of parameter values with the same shape as "
              "input(param). It is used to avoid loss of precision due to too "
              "many sums.");
    AddOutput("out_sum_3",
W
wanghaoshuang 已提交
72
              "(Tensor), A auxiliary tensor to help "
W
wanghaoshuang 已提交
73 74
              "accumulating sums of parameter values with the same shape as "
              "input(param).");
W
wanghaoshuang 已提交
75 76 77 78 79 80 81 82
    AddOutput(
        "out_num_accumulates",
        "(Tensor<int64_t>), The accumulating times of current window with "
        "shape [1].");
    AddOutput(
        "out_old_num_accumulates",
        "(Tensor<int64_t>) The accumulating times of previous window with "
        "shape [1].");
T
tianshuo78520a 已提交
83 84 85
    AddOutput("out_num_updates",
              "(Tensor<int64_t>), The total number of batches used by training "
              "before this batch with shape [1].");
W
wanghaoshuang 已提交
86 87

    AddAttr<float>("average_window",
W
wanghaoshuang 已提交
88 89 90 91 92 93 94 95 96 97 98 99
                   "(float, default 0) "
                   "The rate of average window size relative to num_updates.")
        .SetDefault(0);
    AddAttr<int64_t>("max_average_window",
                     "(int64_t) "
                     "Maximum size of average window. It suggests that the "
                     "number of mini-batches "
                     "in one pass is appropriate value to set.");
    AddAttr<int64_t>("min_average_window",
                     "(int64_t, default 10000L) "
                     "Minimu size of average window.")
        .SetDefault(10000L);
100 101 102

    AddComment(R"DOC(
AverageAccumulates Operator.
103
Accumulate the sum of parameter within sliding window. The size of sliding window is
W
wanghaoshuang 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
determined by 'average_window', 'max_average_window' and 'min_average_window'.
Memory was shared by Input(in_sum_1) and Output(out_sum_1) which acts as an accumulator 'sum_1'.
'sum_2', 'sum_3', 'num_accumulates', 'old_num_accumulates' and 'num_updates' were the same as 'sum_1'.

All the accumulators were inited to zero before training.

And for a mini-batch in training, accumulators were computed as below steps:
    num_updates += 1
    num_accumulates += 1
    sum_1 += param
    if num_updates % kMaxNumAccumulates == 0:
        sum_2 += sum_1
        sum_1 = 0
    if num_accumulates >= min_average_window && num_accumulates >= min(max_average_window, num_updates * average_window):
        sum_3 = sum_1 + sum_2
        sum_1 = 0
        sum_2 = 0
        old_num_accumulates = num_accumulates
        num_accumulates = 0

124 125 126 127 128 129 130 131
)DOC");
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
132 133 134 135
DECLARE_INFER_SHAPE_FUNCTOR(average_accumulates,
                            AverageAccumulatesInferShapeFunctor,
                            PD_INFER_META(phi::AverageAccumulatesInferMeta));

H
hong 已提交
136
REGISTER_OPERATOR(
137 138
    average_accumulates,
    ops::AverageAccumulatesOp,
H
hong 已提交
139 140
    ops::AverageAccumulatesOpMaker,
    paddle::framework::EmptyGradOpMaker<paddle::framework::OpDesc>,
141 142
    paddle::framework::EmptyGradOpMaker<paddle::imperative::OpBase>,
    AverageAccumulatesInferShapeFunctor);