selected_rows_functor.h 4.3 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>

19
#include "paddle/phi/backends/all_context.h"
20
#include "paddle/phi/kernels/funcs/blas/blas.h"
21
#include "paddle/phi/kernels/funcs/eigen/common.h"
22
#include "paddle/phi/kernels/funcs/math_function.h"
23

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

28 29
namespace phi {
namespace funcs {
30 31 32

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

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

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

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

C
chengduo 已提交
67 68
// FIXME: The result of SelectedRowsAddToTensor maybe non deterministic,
// because it uses CudaAtomicAdd.
Q
QI JUN 已提交
69
// input2 = input1 + input2
Q
QI JUN 已提交
70
template <typename DeviceContext, typename T>
Q
QI JUN 已提交
71
struct SelectedRowsAddToTensor {
72 73
  void operator()(const DeviceContext& context,
                  const phi::SelectedRows& input1,
74
                  phi::DenseTensor* input2);
Q
QI JUN 已提交
75 76
};

T
typhoonzero 已提交
77 78 79 80 81 82
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.
83 84 85
  phi::SelectedRows operator()(const DeviceContext& context,
                               const phi::SelectedRows& input,
                               const bool sorted_result = false);
86 87 88 89
  void operator()(const DeviceContext& context,
                  const phi::SelectedRows& input,
                  phi::SelectedRows* output,
                  const bool sorted_result = false);
S
sneaxiy 已提交
90
  void operator()(const DeviceContext& context,
91
                  const std::vector<const phi::SelectedRows*>& inputs,
92 93
                  phi::SelectedRows* output,
                  const bool sorted_result = false);
T
typhoonzero 已提交
94 95
};

96 97
template <typename DeviceContext, typename T>
struct MergeAverage {
98 99
  phi::SelectedRows operator()(const DeviceContext& context,
                               const phi::SelectedRows& input);
100 101
  void operator()(const DeviceContext& context,
                  const phi::SelectedRows& input,
102
                  phi::SelectedRows* output);
103
  void operator()(const DeviceContext& context,
104 105
                  const std::vector<const phi::SelectedRows*>& inputs,
                  phi::SelectedRows* output);
106 107
};

T
wip  
typhoonzero 已提交
108 109
enum class ScatterOps { ASSIGN, ADD, SUB, SUBBY, MUL, DIV, DIVBY };

Q
Qiao Longfei 已提交
110
// out = selected_rows_in / tensor
T
wip  
typhoonzero 已提交
111 112
template <typename DeviceContext, typename T>
struct UpdateToTensor {
113 114 115
  void operator()(const DeviceContext& context,
                  const ScatterOps& op,
                  const phi::SelectedRows& input1,
116
                  phi::DenseTensor* input2);
T
wip  
typhoonzero 已提交
117 118
};

T
typhoonzero 已提交
119
}  // namespace scatter
120 121
}  // namespace funcs
}  // namespace phi