fleet_executor.cc 8.3 KB
Newer Older
L
LiYuRio 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright (c) 2021 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.
14 15
#include "paddle/fluid/distributed/fleet_executor/fleet_executor.h"

16
#include <algorithm>
L
LiYuRio 已提交
17
#include <vector>
L
LiYuRio 已提交
18

19
#include "paddle/fluid/distributed/fleet_executor/global.h"
20
#include "paddle/fluid/distributed/fleet_executor/message_bus.h"
L
LiYuRio 已提交
21
#include "paddle/fluid/distributed/fleet_executor/runtime_graph.h"
22
#include "paddle/fluid/distributed/fleet_executor/task_node.h"
23 24 25
#include "paddle/fluid/framework/executor_gc_helper.h"
#include "paddle/fluid/framework/op_desc.h"
#include "paddle/fluid/framework/op_registry.h"
26
#include "paddle/fluid/framework/operator.h"
L
LiYuRio 已提交
27
#include "paddle/fluid/framework/program_desc.h"
L
LiYuRio 已提交
28
#include "paddle/fluid/framework/variable.h"
L
LiYuRio 已提交
29 30 31 32 33

namespace paddle {
namespace distributed {

FleetExecutor::FleetExecutor(const std::string& exe_desc_str) {
L
LiYuRio 已提交
34
  bool parse_flag = exe_desc_.ParseFromString(exe_desc_str);
35 36 37
  PADDLE_ENFORCE(parse_flag,
                 platform::errors::PreconditionNotMet(
                     "Error occurs while parsing string to proto"));
38
  // Message bus will be created and inited only once
39 40 41 42 43 44 45
  GlobalVal<MessageBus>::Create();
  InitMessageBus();
}

FleetExecutor::FleetExecutor(const FleetExecutorDesc& exe_desc)
    : exe_desc_(exe_desc) {
  // Message bus will be created and inited only once
46 47
  GlobalVal<MessageBus>::Create();
  InitMessageBus();
L
LiYuRio 已提交
48 49
}

50
FleetExecutor::~FleetExecutor() {
51 52
  for (const auto& carrier_id : carrier_ids_) {
    GlobalMap<std::string, Carrier>::Get(carrier_id)->Release();
53
  }
54
}
L
LiYuRio 已提交
55

56
void FleetExecutor::Init(
57 58 59 60 61 62
    const std::string& carrier_id,
    const framework::ProgramDesc& program_desc,
    framework::Scope* scope,
    const platform::Place& place,
    int64_t num_micro_batches,
    const std::vector<TaskNode*>& task_nodes,
63
    const std::unordered_map<int64_t, int64_t>& task_id_to_rank,
L
LiYuRio 已提交
64 65
    const std::vector<std::string>& inference_root_scope_vars,
    const std::vector<framework::Scope*>& micro_scope_list) {
66 67
  PADDLE_ENFORCE_GT(task_nodes.size(),
                    0,
68 69 70 71
                    platform::errors::InvalidArgument(
                        "Fleet executor is inited with empty task node"));
  // TODO(fleet_exe devs): the unused_vars should be got from run time graph
  std::vector<std::unique_ptr<framework::OperatorBase>> ops;
L
LiYuRio 已提交
72 73
  for (const auto& desc : program_desc.Block(0).AllOps()) {
    ops.emplace_back(framework::OpRegistry::CreateOp(*desc));
74
  }
75
  auto unused_vars = framework::GetUnusedVars(program_desc.Block(0), ops, {});
L
LiYuRio 已提交
76

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
  // NOTE: For inference, the vars in inference_root_scope_vars
  // shouldn't be deleted during inf, for that they may be the result of the
  // inf. If they are GCed, it will cause error during ZeroCopy the result.
  std::vector<const framework::OperatorBase*> changed_ops;
  for (auto pair : unused_vars) {
    const framework::OperatorBase* op = pair.first;
    std::vector<std::string> unused = pair.second;
    for (auto name : inference_root_scope_vars) {
      auto iter = std::find(unused.begin(), unused.end(), name);
      if (iter != unused.end()) {
        VLOG(3) << "Removing var: [" << name
                << "] from the unused vars list of op: [" << op->Type() << "]";
        unused.erase(iter);
        if (std::find(changed_ops.begin(), changed_ops.end(), op) ==
            changed_ops.end()) {
          // record the op whose unused vars have been updated
          changed_ops.emplace_back(op);
        }
      }
    }
    // update the unused vars list in the map
    unused_vars[op] = unused;
  }
  for (auto op : changed_ops) {
    auto iter = unused_vars.find(op);
    if (iter->second.empty()) {
      // remove those ops in the map that have empty unused vars list
      VLOG(3) << "Removing op: [" << op->Type() << "] from unused_vars map.";
      unused_vars.erase(iter);
    }
  }
108 109 110 111
  runtime_graph_ = std::make_shared<RuntimeGraph>();
  std::unordered_map<int64_t, TaskNode*> interceptor_id_to_task;
  for (auto task_node : task_nodes) {
    task_node->SetUnusedVars(unused_vars);
L
LiYuRio 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
    if (task_node->type() == "Cond") {
      std::vector<std::string> while_block_vars;
      std::vector<std::string> vars_in_parent;
      std::vector<std::string> vars_in_sub;
      for (auto& var : program_desc.Block(0).AllVars()) {
        vars_in_parent.emplace_back(var->Name());
      }
      for (auto& var : program_desc.Block(1).AllVars()) {
        vars_in_sub.emplace_back(var->Name());
      }
      std::sort(vars_in_parent.begin(), vars_in_parent.end());
      std::sort(vars_in_sub.begin(), vars_in_sub.end());
      std::set_difference(vars_in_sub.begin(),
                          vars_in_sub.end(),
                          vars_in_parent.begin(),
                          vars_in_parent.end(),
                          std::back_inserter(while_block_vars));
      task_node->SetWhileBlockVars(while_block_vars);
    }
131 132 133 134 135 136 137 138
    int64_t interceptor_id = task_node->task_id();
    interceptor_id_to_task.emplace(interceptor_id, task_node);
  }
  runtime_graph_->SetInterceptorIdToRank(task_id_to_rank);
  runtime_graph_->SetInterceptorIdToNode(interceptor_id_to_task);
  for (auto& unique_op : ops) {
    unique_op.release();
  }
139
  VLOG(5) << runtime_graph_->DebugString();
140 141 142
  Carrier* carrier =
      GlobalMap<std::string, Carrier>::Create(carrier_id, carrier_id);
  carrier_ids_.insert(carrier_id);
143 144
  // Set current running carrier
  GlobalVal<std::string>::Set(new std::string(carrier_id));
145 146 147 148 149
  InitCarrier(carrier,
              scope,
              place,
              num_micro_batches,
              program_desc,
L
LiYuRio 已提交
150 151
              inference_root_scope_vars,
              micro_scope_list);
152
  GlobalVal<MessageBus>::Get()->Barrier();
153 154
}

155
void FleetExecutor::InitCarrier(
156 157 158 159 160
    Carrier* carrier,
    framework::Scope* scope,
    const platform::Place& place,
    int64_t num_micro_batches,
    const framework::ProgramDesc& program_desc,
L
LiYuRio 已提交
161 162
    const std::vector<std::string>& inference_root_scope_vars,
    const std::vector<framework::Scope*>& micro_scope_list) {
163 164 165 166 167 168 169
  carrier->Init(exe_desc_.cur_rank(),
                runtime_graph_->interceptor_id_to_rank(),
                runtime_graph_->interceptor_id_to_node(),
                program_desc,
                scope,
                num_micro_batches,
                place,
L
LiYuRio 已提交
170 171
                inference_root_scope_vars,
                micro_scope_list);
172 173
}

174 175 176 177 178 179 180
void FleetExecutor::InitMessageBus() {
  std::stringstream ss;
  ss << "\nThe DNS table of the message bus is: \n";
  int64_t cur_rank = exe_desc_.cur_rank();
  std::unordered_map<int64_t, std::string> rank_to_addr;
  std::string addr;
  for (const auto& rank_info : exe_desc_.cluster_info()) {
181
    // init the dns map
182 183 184 185 186 187 188 189
    int64_t rank = rank_info.rank();
    std::string ip_port = rank_info.ip_port();
    ss << rank << "\t->\t" << ip_port << "\n";
    rank_to_addr.insert(std::make_pair(rank, ip_port));
    if (rank == cur_rank) {
      addr = ip_port;
    }
  }
190 191
  if (addr == "") {
    PADDLE_ENFORCE_EQ(
192 193
        rank_to_addr.size(),
        1,
194 195 196
        platform::errors::NotFound("Empty address is not valid for "
                                   "paddle.distributed.launch method."));
    PADDLE_ENFORCE_EQ(
197 198
        cur_rank,
        0,
199 200 201 202 203 204
        platform::errors::NotFound("Address is empty but cur rank is not 0."));
  }
  VLOG(3) << "Current rank is " << cur_rank << " and the ip_port is "
          << (addr == "" ? "empty" : addr) << ".";
  VLOG(3) << "The number of ranks are "
          << (rank_to_addr.size() == 0 ? 1 : rank_to_addr.size()) << ".";
205
  VLOG(5) << ss.str();
206
  GlobalVal<MessageBus>::Get()->Init(cur_rank, rank_to_addr, addr);
L
LiYuRio 已提交
207 208
}

209
void FleetExecutor::Run(const std::string& carrier_id) {
210 211 212 213 214 215 216
  Carrier* carrier = GlobalMap<std::string, Carrier>::Get(carrier_id);
  // Set current running carrier
  if (*GlobalVal<std::string>::Get() != carrier_id) {
    GlobalVal<std::string>::Set(new std::string(carrier_id));
    GlobalVal<MessageBus>::Get()->Barrier();
  }
  carrier->Start();
L
LiYuRio 已提交
217 218 219 220
}

}  // namespace distributed
}  // namespace paddle