fetch_op_handle.cc 6.8 KB
Newer Older
Y
Yu Yang 已提交
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/fetch_op_handle.h"
16

17
#include <string>
18

19
#include "paddle/fluid/platform/profiler/event_tracing.h"
20

Y
Yu Yang 已提交
21 22 23 24
namespace paddle {
namespace framework {
namespace details {

25 26 27 28
FetchOpHandle::FetchOpHandle(ir::Node *node,
                             FetchResultType *data,
                             size_t offset,
                             std::vector<Scope *> *local_scopes,
Z
Zhen Wang 已提交
29 30
                             std::vector<Scope *> *local_exec_scopes,
                             bool return_merged)
X
Xin Pan 已提交
31 32 33
    : OpHandleBase(node),
      data_(data),
      offset_(offset),
34
      local_scopes_(local_scopes),
Z
Zhen Wang 已提交
35 36
      local_exec_scopes_(local_exec_scopes),
      return_merged_(return_merged) {}
Y
Yu Yang 已提交
37

X
Xin Pan 已提交
38
FetchOpHandle::~FetchOpHandle() {}
Y
Yu Yang 已提交
39

C
chengduoZH 已提交
40
void FetchOpHandle::RecordWaitEventOnCtx(platform::DeviceContext *waited_ctx) {
41 42
  PADDLE_THROW(platform::errors::PermissionDenied(
      "No nodes need to wait FetchOp. Unexpceted Error."));
Y
Yu Yang 已提交
43 44
}

45
static void CheckDims(const framework::DDim &tensor_dims,
46 47
                      const framework::DDim &ele_dims,
                      const size_t offset) {
48
  PADDLE_ENFORCE_EQ(
49 50
      tensor_dims.size(),
      ele_dims.size(),
51 52 53 54 55 56 57 58 59 60
      platform::errors::Fatal("The dimension sizes of fetched Tensors or "
                              "the items of fetched LoDTensorArray are "
                              "different from each other on different "
                              "devices. And the error is caused by the %zu "
                              "(th) fetched variable. Please set the "
                              "parameter `return_merged = False` when you "
                              "call the `Executor.run()` method.",
                              offset));
  for (int j = 1; j < tensor_dims.size(); j++) {
    PADDLE_ENFORCE_EQ(
61 62
        tensor_dims[j],
        ele_dims[j],
63 64 65 66 67 68 69 70 71 72 73 74
        platform::errors::Fatal("The dimensions of fetched Tensors or "
                                "the items of fetched LoDTensorArray are "
                                "different from each other on different "
                                "devices. And the error is caused by the "
                                "%zu (th) fetched variable. Please set the "
                                "parameter `return_merged = False` when "
                                "you call the `Executor.run()` method.",
                                offset));
  }
}

void FetchOpHandle::WaitAndMergeCPUFetchVars() const {
Z
Zhen Wang 已提交
75
  if (return_merged_) {
76
    if (data_is_lod_tensor(tensors_[0])) {
77
      const auto &tensor_dims = BOOST_GET_CONST(LoDTensor, tensors_[0]).dims();
78
      for (size_t i = 1; i < tensors_.size(); i++) {
79
        const auto &ele_dims = BOOST_GET_CONST(LoDTensor, tensors_[i]).dims();
80
        CheckDims(tensor_dims, ele_dims, offset_);
Z
Zhen Wang 已提交
81
      }
82 83 84
      std::vector<const LoDTensor *> tensors_ptr;
      tensors_ptr.reserve(tensors_.size());
      for (auto &t : tensors_) {
85
        tensors_ptr.emplace_back(&BOOST_GET_CONST(LoDTensor, t));
86
      }
87
      auto &val = BOOST_GET(FetchList, *data_);
88
      LoDTensor var;
89
      MergeLoDTensor(&var, tensors_ptr, platform::CPUPlace());
90 91
      val.at(offset_) = std::move(var);
    } else {
92
      auto &array = BOOST_GET_CONST(LoDTensorArray, tensors_[0]);
93 94 95 96 97 98 99 100
      LoDTensorArray tmp_array;
      tmp_array.reserve(array.size());
      for (size_t i = 0; i < array.size(); ++i) {
        const auto &tensor_dims = array[i].dims();
        std::vector<const LoDTensor *> tensors_ptr;
        tensors_ptr.reserve(tensors_.size());
        tensors_ptr.push_back(&array[i]);
        for (size_t j = 1; j < tensors_.size(); ++j) {
101
          auto &element = BOOST_GET_CONST(LoDTensorArray, tensors_[j]);
102 103 104 105 106
          const auto &ele_dims = element[i].dims();
          CheckDims(tensor_dims, ele_dims, offset_);
          tensors_ptr.push_back(&element[i]);
        }
        tmp_array.emplace_back();
107
        MergeLoDTensor(&(tmp_array.back()), tensors_ptr, platform::CPUPlace());
108
      }
109
      auto &val = BOOST_GET(FetchList, *data_);
110
      val.at(offset_) = std::move(tmp_array);
Z
Zhen Wang 已提交
111 112
    }
  } else {
113
    auto &val = BOOST_GET(FetchUnmergedList, *data_);
Z
Zhen Wang 已提交
114
    val.at(offset_) = std::move(tensors_);
Y
Yu Yang 已提交
115 116 117
  }
}

118 119 120 121
static void TransData(const framework::LoDTensor &src_item,
                      framework::LoDTensor *dst_item) {
  if (src_item.IsInitialized() && src_item.numel() > 0) {
    if (platform::is_gpu_place(src_item.place())) {
122
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
123 124 125
      TensorCopy(src_item, platform::CPUPlace(), dst_item);
#endif
    } else {
126
      TensorCopy(src_item, platform::CPUPlace(), dst_item);
127 128 129 130 131 132 133 134
    }
  } else {
    dst_item->clear();
    dst_item->Resize({0});
  }
  dst_item->set_lod(src_item.lod());
}

Y
Yu Yang 已提交
135
void FetchOpHandle::RunImpl() {
136 137
  platform::RecordEvent record_event(
      Name(), platform::TracerEventType::Operator, 1);
C
chengduoZH 已提交
138 139
  WaitInputVarGenerated(platform::CPUPlace());

Y
Yu Yang 已提交
140
  tensors_.resize(inputs_.size());
141
  auto &scopes = *local_exec_scopes_;
Y
Yu Yang 已提交
142

C
chengduoZH 已提交
143 144
  for (size_t i = 0; i < inputs_.size(); ++i) {
    auto *var_handle = static_cast<VarHandle *>(inputs_[i]);
G
gongweibao 已提交
145
    auto &scope = scopes.at(var_handle->scope_idx());
146
    auto *var = scope->FindVar(var_handle->name());
147 148 149 150
    PADDLE_ENFORCE_NOT_NULL(
        var,
        platform::errors::NotFound(
            "Cannot find variable %s in execution scope.", var_handle->name()));
C
chengduoZH 已提交
151

152 153
    if (var->IsType<LoDTensor>()) {
      auto &t = var->Get<framework::LoDTensor>();
154
      auto &item = BOOST_GET(LoDTensor, tensors_[i]);
155
      TransData(t, &item);
Y
Yu Yang 已提交
156
    } else {
157 158 159
      auto &t = var->Get<framework::LoDTensorArray>();
      LoDTensorArray tmp(t.size());
      tensors_[i] = tmp;
160
      auto &item = BOOST_GET(LoDTensorArray, tensors_[i]);
161 162 163
      for (size_t j = 0; j < t.size(); ++j) {
        TransData(t[j], &item[j]);
      }
Y
Yu Yang 已提交
164 165
    }
  }
166
  this->WaitAndMergeCPUFetchVars();
Y
Yu Yang 已提交
167 168
}

C
chengduoZH 已提交
169 170 171
void FetchOpHandle::WaitInputVarGenerated(const platform::Place &place) {
  auto cpu_ctx = platform::DeviceContextPool::Instance().Get(place);
  for (auto *input : inputs_) {
X
Xin Pan 已提交
172 173
    if (input->GeneratedOp()) {
      input->GeneratedOp()->RecordWaitEventOnCtx(cpu_ctx);
C
chengduoZH 已提交
174 175 176 177
    }
  }
}

178 179
bool FetchOpHandle::IsMultiDeviceTransfer() { return true; }

Y
Yu Yang 已提交
180 181
std::string FetchOpHandle::Name() const { return "Fetch"; }

Y
Yu Yang 已提交
182 183 184
}  // namespace details
}  // namespace framework
}  // namespace paddle