carrier.cc 8.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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.

#include "paddle/fluid/distributed/fleet_executor/carrier.h"
#include "paddle/fluid/distributed/fleet_executor/interceptor.h"
#include "paddle/fluid/distributed/fleet_executor/interceptor_message_service.h"
18
#include "paddle/fluid/distributed/fleet_executor/message_bus.h"
19
#include "paddle/fluid/distributed/fleet_executor/runtime_graph.h"
20
#include "paddle/fluid/distributed/fleet_executor/task_node.h"
21
#include "paddle/fluid/framework/scope.h"
22 23 24 25

namespace paddle {
namespace distributed {

26 27
USE_INTERCEPTOR(Compute);

28 29 30 31 32
void Carrier::Init(std::shared_ptr<RuntimeGraph> runtime_graph,
                   framework::Scope* root_scope,
                   framework::Scope* minibatch_scope,
                   const std::vector<framework::Scope*>& microbatch_scopes,
                   const platform::Place& place) {
33 34
  PADDLE_ENFORCE_EQ(is_init_, false, platform::errors::AlreadyExists(
                                         "Carrier is already init."));
35
  runtime_graph_ = runtime_graph;
36 37 38
  minibatch_scope_ = minibatch_scope;
  microbatch_scopes_ = microbatch_scopes;
  place_ = place;
39 40
  root_scope_ = root_scope;
  dev_ctx_ = platform::DeviceContextPool::Instance().Get(place_);
41
  CreateInterceptors();
42
  is_init_ = true;
43 44
}

45
void Carrier::Release() {
46 47
  // NOTE(wangxi): must join before `Derived Interceptor` destruct,
  // otherwise Derived object will be destructed before thread complete.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64

  // Sending STOP msg to the source interceptor
  MessageBus& msg_bus = MessageBus::Instance();
  PADDLE_ENFORCE_EQ(msg_bus.IsInit(), true,
                    platform::errors::PreconditionNotMet(
                        "Message bus has not been initialized."));
  for (int64_t id : source_interceptor_ids_) {
    VLOG(3) << "Carrier Release is sending stop to source interceptor " << id
            << ".";
    InterceptorMessage stop_msg;
    // source node STOP is send by carrier, so set src_id=-1
    stop_msg.set_src_id(-1);
    stop_msg.set_dst_id(id);
    stop_msg.set_message_type(STOP);
    msg_bus.Send(stop_msg);
  }

65 66 67 68 69 70
  // TODO(wangxi): Maybe need a better to use thread.
  for (auto& interceptor : interceptor_idx_to_interceptor_) {
    interceptor.second->Join();
  }
}

71 72
Carrier::~Carrier() { VLOG(3) << "Carrier's destructor."; }

73 74 75
bool Carrier::EnqueueInterceptorMessage(
    const InterceptorMessage& interceptor_message) {
  // enqueue message to interceptor
76 77 78 79
  if (interceptor_message.ctrl_message()) {
    // handle control message
    return true;
  } else {
80 81 82 83 84 85 86 87 88 89
    {
      std::unique_lock<std::mutex> lock_creating(creating_flag_mutex_);
      if (creating_interceptors_) {
        std::unique_lock<std::mutex> lock_message(tmp_message_mutex_);
        // Cannot handle the message to interceptor since interceptors
        // are still under creating. Will enqueue into a tmp stack.
        VLOG(3) << "Receiving message while creating interceptors.";
        message_tmp_.emplace_back(interceptor_message);
        return true;
      }
90
    }
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    int64_t dst_id = interceptor_message.dst_id();
    Interceptor* dst_interceptor = GetInterceptor(dst_id);
    bool rst =
        dst_interceptor->EnqueueRemoteInterceptorMessage(interceptor_message);
    if (rst) {
      std::condition_variable& interceptor_cond_var =
          dst_interceptor->GetCondVar();
      interceptor_cond_var.notify_all();
    }
    return rst;
  }
}

Interceptor* Carrier::GetInterceptor(int64_t interceptor_id) {
  auto iter = interceptor_idx_to_interceptor_.find(interceptor_id);
  PADDLE_ENFORCE_NE(iter, interceptor_idx_to_interceptor_.end(),
                    platform::errors::InvalidArgument(
                        "Cannot find interceptor instance for interceptor "
                        "id %lld. Wrong dst? Call before init?",
                        interceptor_id));
  return iter->second.get();
112 113
}

114
void Carrier::Start() {
115 116 117 118 119 120 121 122 123 124 125 126 127 128
  MessageBus& msg_bus = MessageBus::Instance();
  PADDLE_ENFORCE_EQ(msg_bus.IsInit(), true,
                    platform::errors::PreconditionNotMet(
                        "Message bus has not been initialized."));

  for (int64_t id : source_interceptor_ids_) {
    VLOG(3) << "Carrier Start is sending start to source interceptor " << id
            << ".";
    InterceptorMessage start_msg;
    // source node data_is_ready is send by carrier, so set src_id=-1
    start_msg.set_src_id(-1);
    start_msg.set_dst_id(id);
    start_msg.set_message_type(DATA_IS_READY);
    msg_bus.Send(start_msg);
129
  }
130

131 132
  std::unique_lock<std::mutex> lock(running_mutex_);
  cond_var_.wait(lock);
133
  dev_ctx_->Wait();
134 135
}

136 137
std::condition_variable& Carrier::GetCondVar() { return cond_var_; }

138 139
bool Carrier::IsInit() const { return is_init_; }

140 141 142 143 144 145 146 147 148 149 150 151 152 153
Interceptor* Carrier::SetInterceptor(int64_t interceptor_id,
                                     std::unique_ptr<Interceptor> interceptor) {
  auto iter = interceptor_idx_to_interceptor_.find(interceptor_id);
  PADDLE_ENFORCE_EQ(iter, interceptor_idx_to_interceptor_.end(),
                    platform::errors::AlreadyExists(
                        "The interceptor id %lld has already been created! "
                        "The interceptor id should be unique.",
                        interceptor_id));
  auto* ptr = interceptor.get();
  interceptor_idx_to_interceptor_.insert(
      std::make_pair(interceptor_id, std::move(interceptor)));
  return ptr;
}

154 155
void Carrier::SetCreatingFlag(bool flag) {
  // set the creating flag
156
  creating_flag_mutex_.lock();
157 158 159
  VLOG(3) << "Carrier is set the creating flag from " << creating_interceptors_
          << " to " << flag << ".";
  creating_interceptors_ = flag;
160
  creating_flag_mutex_.unlock();
161
  if (!flag) {
162 163 164 165 166 167 168 169 170 171 172
    for (auto& pair : interceptor_idx_to_interceptor_) {
      // update the source interceptor id
      if (std::find(source_interceptor_ids_.begin(),
                    source_interceptor_ids_.end(),
                    pair.first) == source_interceptor_ids_.end()) {
        auto task = pair.second->GetTaskNode();
        if (task != nullptr && task->upstream().empty()) {
          source_interceptor_ids_.emplace_back(pair.first);
        }
      }
    }
173 174 175 176 177 178
    // finish create interceptors outside, handle tmp messsages
    HandleTmpMessages();
  }
}

void Carrier::HandleTmpMessages() {
179 180 181 182 183 184
  // NOTE: It's ok lock on the tmp_message_mutex_ here, when enter this
  // `HandleTmpMessages` method, the creating_interceptors_ flag
  // must be false, therefore, there won't have conflict with the
  // lock on the tmp_message_mutex_ inside `EnqueueInterceptorMessage`
  // on the same thread.
  std::unique_lock<std::mutex> lock(tmp_message_mutex_);
185 186 187 188 189 190 191 192
  VLOG(3) << "Carrier has received " << message_tmp_.size()
          << " messages during creating interceptors.";
  for (const auto& msg : message_tmp_) {
    EnqueueInterceptorMessage(msg);
  }
  message_tmp_.clear();
}

193 194
void Carrier::CreateInterceptors() {
  // create each Interceptor
195
  if (!(runtime_graph_->intercepter_id_to_node().empty())) {
196
    // no auto init since there is no config
197
    for (const auto& item : runtime_graph_->intercepter_id_to_node()) {
198 199
      int64_t interceptor_id = item.first;
      TaskNode* task_node = item.second;
200

201 202 203 204 205 206 207 208
      std::unique_ptr<Interceptor> interceptor;
      if (task_node->type().empty()) {
        // TODO(wangxi): delete this in future
        interceptor.reset(new Interceptor(interceptor_id, task_node));
      } else {
        interceptor = InterceptorFactory::Create(task_node->type(),
                                                 interceptor_id, task_node);
      }
209 210 211 212
      interceptor->SetPlace(place_);
      interceptor->SetMiniBatchScope(minibatch_scope_);
      interceptor->SetMicroBatchScope(microbatch_scopes_);
      interceptor->SetRootScope(root_scope_);
213

214 215 216
      SetInterceptor(interceptor_id, std::move(interceptor));
      VLOG(3) << "Create Interceptor with interceptor id: " << interceptor_id
              << ".";
217 218 219 220

      if (task_node->upstream().empty()) {
        source_interceptor_ids_.emplace_back(interceptor_id);
      }
221 222 223
    }
    // The carrier will be always waiting for outside initializer
    // since there is no interceptor has been created during auto init
224
    creating_flag_mutex_.lock();
225
    creating_interceptors_ = false;
226
    creating_flag_mutex_.unlock();
227
    HandleTmpMessages();
228
  }
229 230 231 232
}

}  // namespace distributed
}  // namespace paddle