interceptor.cc 3.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// 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/interceptor.h"

namespace paddle {
namespace distributed {

20 21 22 23 24 25 26 27 28 29
Interceptor::Interceptor(int64_t interceptor_id, TaskNode* node)
    : interceptor_id_(interceptor_id), node_(node) {
  interceptor_thread_ = std::thread([this]() {
    VLOG(3) << "Start pooling local mailbox's thread.";
    PoolTheMailbox();
  });
}

Interceptor::~Interceptor() { interceptor_thread_.join(); }

30 31 32 33 34 35 36 37 38 39
void Interceptor::RegisterInterceptorHandle(InterceptorHandle handle) {
  handle_ = handle;
}

void Interceptor::Handle(const InterceptorMessage& msg) {
  if (handle_) {
    handle_(msg);
  }
}

40 41 42
std::condition_variable& Interceptor::GetCondVar() {
  // get the conditional var
  return cond_var_;
43 44 45 46
}

int64_t Interceptor::GetInterceptorId() const {
  // return the interceptor id
47
  return interceptor_id_;
48 49 50 51 52
}

bool Interceptor::EnqueueRemoteInterceptorMessage(
    const InterceptorMessage& interceptor_message) {
  // Called by Carrier, enqueue an InterceptorMessage to remote mailbox
53 54
  VLOG(3) << "Enqueue message: " << interceptor_message.message_type()
          << " into " << interceptor_id_ << "'s remote mailbox.";
55
  std::unique_lock<std::mutex> lock(remote_mailbox_mutex_);
56
  remote_mailbox_.push(interceptor_message);
57 58 59
  return true;
}

60 61 62 63 64 65 66
void Interceptor::Send(int64_t dst_id,
                       std::unique_ptr<InterceptorMessage> msg) {
  msg->set_src_id(interceptor_id_);
  msg->set_dst_id(dst_id);
  // send interceptor msg
}

67 68
void Interceptor::PoolTheMailbox() {
  // pool the local mailbox, parse the Message
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
  while (true) {
    if (local_mailbox_.empty()) {
      // local mailbox is empty, fetch the remote mailbox
      VLOG(3) << interceptor_id_ << "'s local mailbox is empty. "
              << "Fetch the remote mailbox.";
      PADDLE_ENFORCE_EQ(FetchRemoteMailbox(), true,
                        platform::errors::InvalidArgument(
                            "Error encountered when fetch remote mailbox."));
    }
    const InterceptorMessage interceptor_message = local_mailbox_.front();
    local_mailbox_.pop();
    const MessageType message_type = interceptor_message.message_type();
    VLOG(3) << interceptor_id_ << " has received a message: " << message_type
            << ".";
    if (message_type == STOP) {
      // break the pooling thread
      break;
    }
87 88

    Handle(interceptor_message);
89
  }
90 91 92 93 94
}

bool Interceptor::FetchRemoteMailbox() {
  // fetch all Message from remote mailbox to local mailbox
  // return true if remote mailbox not empty, otherwise return false
95 96 97 98 99 100 101 102 103 104
  std::unique_lock<std::mutex> lock(remote_mailbox_mutex_);
  cond_var_.wait(lock, [this]() { return !remote_mailbox_.empty(); });
  if (remote_mailbox_.empty()) {
    // the thread has been unblocked accidentally
    return false;
  }
  while (!remote_mailbox_.empty()) {
    local_mailbox_.push(std::move(remote_mailbox_.front()));
    remote_mailbox_.pop();
  }
105 106 107 108 109
  return true;
}

}  // namespace distributed
}  // namespace paddle