selected_rows_functor.h 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* 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
#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 已提交
24
template <typename DeviceContext, typename T>
25
struct SelectedRowsAdd {
Q
QI JUN 已提交
26
  void operator()(const DeviceContext& context,
27 28 29 30 31
                  const framework::SelectedRows& input1,
                  const framework::SelectedRows& input2,
                  framework::SelectedRows* output);
};

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

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

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

55 56 57
}  // namespace math
}  // namespace operators
}  // namespace paddle