selected_rows_functor.h 3.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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
T
wip  
typhoonzero 已提交
15
#include "paddle/framework/eigen.h"
16 17 18 19 20 21 22 23 24
#include "paddle/framework/selected_rows.h"
#include "paddle/platform/device_context.h"

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

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

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

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

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

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

template <typename DeviceContext, typename T>
struct Mul {
  void operator()(const DeviceContext& context,
                  const framework::SelectedRows& input1,
                  const framework::SelectedRows& input2,
                  framework::SelectedRows* out) {
T
wip  
typhoonzero 已提交
91 92 93
    out->set_rows(input1.rows());
    out->set_height(input1.height());
    out->mutable_value()->mutable_data<T>(input1.value().dims(),
T
typhoonzero 已提交
94 95
                                          context.GetPlace());
    auto e_out = framework::EigenVector<T>::Flatten(*(out->mutable_value()));
T
wip  
typhoonzero 已提交
96 97
    auto e_in1 = framework::EigenVector<T>::Flatten(input1.value());
    auto e_in2 = framework::EigenVector<T>::Flatten(input2.value());
T
typhoonzero 已提交
98 99 100 101 102
    e_out.device(*context.eigen_device()) = e_in1 * e_in2;
  }
};

}  // namespace scatter
103 104 105
}  // namespace math
}  // namespace operators
}  // namespace paddle