selected_rows_functor.h 4.4 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 21
#include "paddle/phi/core/mixed_vector.h"
#include "paddle/phi/core/selected_rows.h"
22
#include "paddle/phi/kernels/funcs/blas/blas.h"
23
#include "paddle/phi/kernels/funcs/eigen/common.h"
24
#include "paddle/phi/kernels/funcs/math_function.h"
25

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

30 31
namespace phi {
namespace funcs {
32 33 34

// 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 {
37 38 39 40
  void operator()(const DeviceContext& context,
                  const phi::SelectedRows& input1,
                  const phi::SelectedRows& input2,
                  phi::SelectedRows* output);
41 42
};

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

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

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

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

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

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

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

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

T
typhoonzero 已提交
121
}  // namespace scatter
122 123
}  // namespace funcs
}  // namespace phi