gather_op_handle.cc 4.3 KB
Newer Older
C
chengduoZH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
//
// 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.

#include "paddle/fluid/framework/details/gather_op_handle.h"
Y
Yu Yang 已提交
16 17
#include "paddle/fluid/framework/details/container_cast.h"
#include "paddle/fluid/framework/details/variable_visitor.h"
C
chengduoZH 已提交
18 19 20 21 22

namespace paddle {
namespace framework {
namespace details {

X
Xin Pan 已提交
23 24
GatherOpHandle::GatherOpHandle(ir::Node *node,
                               const std::vector<Scope *> &local_scopes,
C
chengduoZH 已提交
25
                               const std::vector<platform::Place> &places)
X
Xin Pan 已提交
26
    : OpHandleBase(node), local_scopes_(local_scopes), places_(places) {}
C
chengduoZH 已提交
27 28

void GatherOpHandle::RunImpl() {
C
chengduoZH 已提交
29
  if (places_.size() == 1) return;
C
chengduoZH 已提交
30
  // the input and output may have dummy var.
Y
Yu Yang 已提交
31
  auto in_var_handles = DynamicCast<VarHandle>(inputs_);
C
chengduoZH 已提交
32

C
chengduoZH 已提交
33
  PADDLE_ENFORCE_EQ(
34 35 36
      in_var_handles.size(), places_.size(),
      "The number of output should equal to the number of places.");

Y
Yu Yang 已提交
37 38
  VarHandle *out_var_handle;
  {
C
chengduo 已提交
39
    auto out_var_handles = DynamicCast<VarHandle>(this->Outputs());
Y
Yu Yang 已提交
40 41 42 43 44
    PADDLE_ENFORCE_EQ(out_var_handles.size(), 1,
                      "The number of output should be one.");
    out_var_handle = out_var_handles.front();
  }

C
chengduoZH 已提交
45 46 47 48 49
  std::vector<const Scope *> var_scopes;
  for (auto *s : local_scopes_) {
    var_scopes.emplace_back(s->FindVar(kLocalExecScopeName)->Get<Scope *>());
  }

Y
Yu Yang 已提交
50
  auto in_0_handle = in_var_handles[0];
51
  auto pre_in_var =
C
chengduoZH 已提交
52 53
      var_scopes.at(in_0_handle->scope_idx_)->FindVar(in_0_handle->name_);
  PADDLE_ENFORCE_NOT_NULL(pre_in_var);
C
chengduoZH 已提交
54

55 56
  PADDLE_ENFORCE(pre_in_var->IsType<framework::SelectedRows>(),
                 "Currently, gather_op only can gather SelectedRows.");
57

C
chengduoZH 已提交
58
  // Wait input done, this Wait is asynchronous operation
C
chengduoZH 已提交
59
  WaitInputVarGenerated();
C
chengduoZH 已提交
60

C
chengduoZH 已提交
61
  auto &pre_in_value = pre_in_var->Get<framework::SelectedRows>();
C
chengduoZH 已提交
62
  std::vector<int64_t> out_rows;
63
  std::vector<Tensor> in_tensors;
C
chengduoZH 已提交
64

C
chengduoZH 已提交
65
  // Gather the inputs
Y
Yu Yang 已提交
66 67
  for (auto *in_handle : in_var_handles) {
    auto *in_var =
C
chengduoZH 已提交
68
        var_scopes.at(in_handle->scope_idx_)->FindVar(in_handle->name_);
C
chengduoZH 已提交
69
    PADDLE_ENFORCE_NOT_NULL(in_var);
C
chengduoZH 已提交
70
    VariableVisitor::EnforceShapeAndDTypeEQ(*in_var, *pre_in_var);
C
chengduoZH 已提交
71 72

    auto &in_sr_value = in_var->Get<framework::SelectedRows>();
73

C
chengduoZH 已提交
74
    auto &in_sr_rows = in_sr_value.rows();
75
    out_rows.insert(out_rows.end(), in_sr_rows.begin(), in_sr_rows.end());
C
chengduoZH 已提交
76
    in_tensors.emplace_back(in_sr_value.value());
C
chengduoZH 已提交
77 78
  }

C
chengduoZH 已提交
79 80 81 82 83 84 85 86 87
  // NOTE: The Places of all input tensor must be all on CPU or all on GPU.
  platform::Place t_out_p = out_var_handle->place_;
  if (platform::is_gpu_place(pre_in_value.place())) {
    PADDLE_ENFORCE(platform::is_gpu_place(t_out_p),
                   "Places of input and output must be all on GPU.");
  } else {
    t_out_p = platform::CPUPlace();
  }

C
chengduoZH 已提交
88 89 90 91 92 93
  auto out_var =
      var_scopes.at(out_var_handle->scope_idx_)->FindVar(out_var_handle->name_);
  PADDLE_ENFORCE_NOT_NULL(out_var);
  auto out_value = out_var->GetMutable<framework::SelectedRows>();
  out_value->set_height(pre_in_value.height());
  out_value->set_rows(out_rows);
94
  size_t rows = out_rows.size();
C
chengduoZH 已提交
95
  DDim out_dim = pre_in_value.GetCompleteDims();
96
  out_dim[0] = static_cast<int64_t>(rows);
C
chengduoZH 已提交
97
  out_value->mutable_value()->Resize(out_dim).mutable_data(
C
chengduoZH 已提交
98
      t_out_p, pre_in_value.value().type());
C
chengduoZH 已提交
99
  Tensor *out_tensor = out_value->mutable_value();
100 101

  // copy
C
chengduo 已提交
102
  auto dev_ctx = dev_ctxes_.at(out_var_handle->place_);
C
chengduoZH 已提交
103 104
  RunAndRecordEvent(out_var_handle->place_, [in_tensors, out_tensor, &dev_ctx,
                                             t_out_p] {
C
chengduoZH 已提交
105 106 107 108
    int s = 0, e = 0;
    for (size_t j = 0; j < in_tensors.size(); ++j) {
      e += in_tensors[j].dims()[0];
      auto sub_out = out_tensor->Slice(s, e);
C
chengduoZH 已提交
109
      paddle::framework::TensorCopy(in_tensors[j], t_out_p, *dev_ctx, &sub_out);
C
chengduoZH 已提交
110 111 112
      s = e;
    }
  });
C
chengduoZH 已提交
113 114
}

C
chengduoZH 已提交
115
std::string GatherOpHandle::Name() const { return "gather"; }
C
chengduoZH 已提交
116 117 118
}  // namespace details
}  // namespace framework
}  // namespace paddle