selected_rows_functor.h 3.7 KB
Newer Older
1
/* Copyright (c) 2016 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. */
#pragma once
M
minqiyang 已提交
15

S
sneaxiy 已提交
16
#include <map>
17 18
#include <vector>

Y
Yi Wang 已提交
19 20
#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/selected_rows.h"
M
minqiyang 已提交
21 22
#include "paddle/fluid/operators/math/blas.h"
#include "paddle/fluid/operators/math/math_function.h"
Y
Yi Wang 已提交
23
#include "paddle/fluid/platform/device_context.h"
24

T
wip  
typhoonzero 已提交
25 26 27 28
#define INLINE_FOR2(sizei, sizej)     \
  for (int64_t i = 0; i < sizei; i++) \
    for (int64_t j = 0; j < sizej; j++)

29 30 31 32 33 34
namespace paddle {
namespace operators {
namespace math {

// SelectedRows + SelectedRows will simplely concat value and rows.
// The real computation happens in dealing with LoDTensor.
Q
QI JUN 已提交
35
template <typename DeviceContext, typename T>
36
struct SelectedRowsAdd {
Q
QI JUN 已提交
37
  void operator()(const DeviceContext& context,
38 39 40 41 42
                  const framework::SelectedRows& input1,
                  const framework::SelectedRows& input2,
                  framework::SelectedRows* output);
};

Q
QI JUN 已提交
43
template <typename DeviceContext, typename T>
44
struct SelectedRowsAddTensor {
Q
QI JUN 已提交
45
  void operator()(const DeviceContext& context,
46 47 48 49
                  const framework::SelectedRows& input1,
                  const framework::Tensor& input2, framework::Tensor* output);
};

Q
QI JUN 已提交
50
// input2 = input1 + input2
Q
QI JUN 已提交
51
template <typename DeviceContext, typename T>
Q
QI JUN 已提交
52
struct SelectedRowsAddTo {
Q
QI JUN 已提交
53
  void operator()(const DeviceContext& context,
Q
QI JUN 已提交
54 55 56 57
                  const framework::SelectedRows& input1,
                  const int64_t input2_offset, framework::SelectedRows* input2);
};

M
minqiyang 已提交
58 59 60 61 62 63 64 65 66
// input2 = [all input in input1] + input2
template <typename DeviceContext, typename T>
struct SelectedRowsSumTo {
  void operator()(const DeviceContext& context,
                  const std::vector<framework::SelectedRows*>& input1,
                  const std::vector<int64_t>& input2_offsets,
                  framework::SelectedRows* input2);
};

Q
QI JUN 已提交
67
// input2 = input1 + input2
Q
QI JUN 已提交
68
template <typename DeviceContext, typename T>
Q
QI JUN 已提交
69
struct SelectedRowsAddToTensor {
Q
QI JUN 已提交
70
  void operator()(const DeviceContext& context,
Q
QI JUN 已提交
71 72 73 74
                  const framework::SelectedRows& input1,
                  framework::Tensor* input2);
};

T
typhoonzero 已提交
75 76 77 78 79 80
namespace scatter {
// functors for manuplating SelectedRows data
template <typename DeviceContext, typename T>
struct MergeAdd {
  // unary functor, merge by adding duplicated rows in
  // the input SelectedRows object.
T
wip  
typhoonzero 已提交
81 82
  framework::SelectedRows operator()(const DeviceContext& context,
                                     const framework::SelectedRows& input);
S
sneaxiy 已提交
83 84 85
  void operator()(const DeviceContext& context,
                  const framework::SelectedRows& input,
                  framework::SelectedRows* output);
Q
qiaolongfei 已提交
86
  void operator()(const DeviceContext& context,
87 88
                  const std::vector<const framework::SelectedRows*>& inputs,
                  framework::SelectedRows* output);
T
typhoonzero 已提交
89 90
};

T
wip  
typhoonzero 已提交
91 92 93 94 95
enum class ScatterOps { ASSIGN, ADD, SUB, SUBBY, MUL, DIV, DIVBY };

// out = seleted_rows_in / tensor
template <typename DeviceContext, typename T>
struct UpdateToTensor {
T
typhoonzero 已提交
96 97 98
  void operator()(const DeviceContext& context, const ScatterOps& op,
                  const framework::SelectedRows& input1,
                  framework::Tensor* input2);
T
wip  
typhoonzero 已提交
99 100
};

T
typhoonzero 已提交
101
}  // namespace scatter
102 103 104
}  // namespace math
}  // namespace operators
}  // namespace paddle