selected_rows_functor.h 5.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
Y
Yi Wang 已提交
15 16 17
#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/selected_rows.h"
#include "paddle/fluid/platform/device_context.h"
18

T
wip  
typhoonzero 已提交
19 20 21 22
#define INLINE_FOR2(sizei, sizej)     \
  for (int64_t i = 0; i < sizei; i++) \
    for (int64_t j = 0; j < sizej; j++)

23 24 25 26 27 28
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 已提交
29
template <typename DeviceContext, typename T>
30
struct SelectedRowsAdd {
Q
QI JUN 已提交
31
  void operator()(const DeviceContext& context,
32 33 34 35 36
                  const framework::SelectedRows& input1,
                  const framework::SelectedRows& input2,
                  framework::SelectedRows* output);
};

Q
QI JUN 已提交
37
template <typename DeviceContext, typename T>
38
struct SelectedRowsAddTensor {
Q
QI JUN 已提交
39
  void operator()(const DeviceContext& context,
40 41 42 43
                  const framework::SelectedRows& input1,
                  const framework::Tensor& input2, framework::Tensor* output);
};

Q
QI JUN 已提交
44
// input2 = input1 + input2
Q
QI JUN 已提交
45
template <typename DeviceContext, typename T>
Q
QI JUN 已提交
46
struct SelectedRowsAddTo {
Q
QI JUN 已提交
47
  void operator()(const DeviceContext& context,
Q
QI JUN 已提交
48 49 50 51 52
                  const framework::SelectedRows& input1,
                  const int64_t input2_offset, framework::SelectedRows* input2);
};

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

T
typhoonzero 已提交
60 61 62 63 64 65
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 已提交
66 67
  framework::SelectedRows operator()(const DeviceContext& context,
                                     const framework::SelectedRows& input);
S
sneaxiy 已提交
68 69 70
  void operator()(const DeviceContext& context,
                  const framework::SelectedRows& input,
                  framework::SelectedRows* output);
T
typhoonzero 已提交
71 72 73 74
};

template <typename DeviceContext, typename T>
struct Add {
T
wip  
typhoonzero 已提交
75 76 77 78 79 80 81 82 83
  framework::SelectedRows operator()(const DeviceContext& context,
                                     const framework::SelectedRows& input1,
                                     const framework::SelectedRows& input2) {
    framework::SelectedRows out;
    out.set_rows(input1.rows());
    out.set_height(input1.height());
    out.mutable_value()->mutable_data<T>(input1.value().dims(),
                                         context.GetPlace());
    auto e_out = framework::EigenVector<T>::Flatten(*(out.mutable_value()));
T
wip  
typhoonzero 已提交
84 85
    auto e_in1 = framework::EigenVector<T>::Flatten(input1.value());
    auto e_in2 = framework::EigenVector<T>::Flatten(input2.value());
T
typhoonzero 已提交
86
    e_out.device(*context.eigen_device()) = e_in1 + e_in2;
T
wip  
typhoonzero 已提交
87
    return out;
T
typhoonzero 已提交
88 89 90 91 92
  }
};

template <typename DeviceContext, typename T>
struct Mul {
T
wip  
typhoonzero 已提交
93 94 95 96 97 98 99 100 101 102
  // multiply two SelectedRows
  framework::SelectedRows operator()(const DeviceContext& context,
                                     const framework::SelectedRows& input1,
                                     const framework::SelectedRows& input2) {
    framework::SelectedRows out;
    out.set_rows(input1.rows());
    out.set_height(input1.height());
    out.mutable_value()->mutable_data<T>(input1.value().dims(),
                                         context.GetPlace());
    auto e_out = framework::EigenVector<T>::Flatten(*(out.mutable_value()));
T
wip  
typhoonzero 已提交
103 104
    auto e_in1 = framework::EigenVector<T>::Flatten(input1.value());
    auto e_in2 = framework::EigenVector<T>::Flatten(input2.value());
T
typhoonzero 已提交
105
    e_out.device(*context.eigen_device()) = e_in1 * e_in2;
T
wip  
typhoonzero 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
    return out;
  }
  // multiply scalar to SelectedRows
  framework::SelectedRows operator()(const DeviceContext& context,
                                     const framework::SelectedRows& input1,
                                     const T input2) {
    framework::SelectedRows out;
    out.set_rows(input1.rows());
    out.set_height(input1.height());
    out.mutable_value()->mutable_data<T>(input1.value().dims(),
                                         context.GetPlace());
    auto e_out = framework::EigenVector<T>::Flatten(*(out.mutable_value()));
    auto e_in1 = framework::EigenVector<T>::Flatten(input1.value());
    e_out.device(*context.eigen_device()) = input2 * e_in1;
    return out;
T
typhoonzero 已提交
121 122 123
  }
};

T
wip  
typhoonzero 已提交
124 125 126 127 128
enum class ScatterOps { ASSIGN, ADD, SUB, SUBBY, MUL, DIV, DIVBY };

// out = seleted_rows_in / tensor
template <typename DeviceContext, typename T>
struct UpdateToTensor {
T
typhoonzero 已提交
129 130 131
  void operator()(const DeviceContext& context, const ScatterOps& op,
                  const framework::SelectedRows& input1,
                  framework::Tensor* input2);
T
wip  
typhoonzero 已提交
132 133
};

T
typhoonzero 已提交
134
}  // namespace scatter
135 136 137
}  // namespace math
}  // namespace operators
}  // namespace paddle