rpc_server.cc 6.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

W
Wu Yi 已提交
15 16
#include "paddle/fluid/operators/distributed/rpc_server.h"

17 18 19 20
#include <fstream>
#include <iostream>
#include <limits>
#include <string>
21 22
#include "paddle/fluid/platform/profiler.h"

23 24
namespace paddle {
namespace operators {
25
namespace distributed {
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

void RPCServer::ShutDown() {
  LOG(INFO) << "RPCServer ShutDown ";
  ShutDownImpl();

  exit_flag_ = true;
  barrier_cond_.notify_all();
  rpc_cond_.notify_all();
}

void RPCServer::SavePort() const {
  auto file_path = string::Sprintf("/tmp/paddle.%d.port", ::getpid());
  std::ofstream port_file;
  port_file.open(file_path);
  port_file << selected_port_;
  port_file.close();
Q
Qiao Longfei 已提交
42
  VLOG(3) << "selected port written to " << file_path;
43 44 45
}

void RPCServer::WaitBarrier(const std::string& rpc_name) {
Q
Qiao Longfei 已提交
46
  VLOG(3) << "WaitBarrier in: " << rpc_name;
47
  std::unique_lock<std::mutex> lock(this->mutex_);
W
Wu Yi 已提交
48
  barrier_cond_.wait(lock, [this, &rpc_name] {
Y
Yancey1989 已提交
49 50
    return ((barrier_counter_[rpc_name] == client_num_ && client_num_ != 0) ||
            exit_flag_.load());
51 52
  });

Q
Qiao Longfei 已提交
53 54
  VLOG(3) << "WaitBarrier out: " << rpc_name
          << " counter: " << barrier_counter_[rpc_name];
55 56 57
}

void RPCServer::IncreaseBatchBarrier(const std::string rpc_name) {
Q
Qiao Longfei 已提交
58
  VLOG(3) << "RPCServer begin IncreaseBatchBarrier " << rpc_name;
59
  int b = 0;
W
Wu Yi 已提交
60 61
  std::unique_lock<std::mutex> lock(mutex_);
  b = ++barrier_counter_[rpc_name];
Q
Qiao Longfei 已提交
62
  VLOG(3) << rpc_name << " barrier_counter: " << b;
63
  if (b >= client_num_) {
W
Wu Yi 已提交
64
    lock.unlock();
Q
Qiao Longfei 已提交
65 66
    VLOG(3) << "BatchBarrier counter reach " << client_num_ << " for "
            << rpc_name;
67
    barrier_cond_.notify_all();
W
Wu Yi 已提交
68
    lock.lock();
69 70 71
  }
}

Y
Yancey1989 已提交
72
void RPCServer::Complete() {
Y
Yancey1989 已提交
73
  {
Y
Yancey1989 已提交
74
    std::unique_lock<std::mutex> lock(mutex_);
W
Wu Yi 已提交
75
    client_num_--;
Y
Yancey1989 已提交
76 77
    need_reset_all_vars_ = true;

Q
Qiao Longfei 已提交
78
    VLOG(3) << "decrease client_num to: " << client_num_;
Y
Yancey1989 已提交
79 80 81
    if (cur_cond_.load() == rpc_cond_map_[kRequestGet]) {
      barrier_counter_[kRequestGet]--;
    }
W
Wu Yi 已提交
82 83 84 85
  }
  barrier_cond_.notify_all();
}

Y
Yancey1989 已提交
86 87 88 89 90
bool RPCServer::NeedResetAllVars() {
  std::unique_lock<std::mutex> lock(mutex_);
  return need_reset_all_vars_;
}

Y
Yancey1989 已提交
91 92 93 94 95
int RPCServer::GetClientNum() {
  std::unique_lock<std::mutex> lock(mutex_);
  return client_num_;
}

96
void RPCServer::ResetBarrierCounter() {
M
minqiyang 已提交
97
  VLOG(3) << "RPCServer ResetBarrierCounter ";
98 99 100 101
  std::unique_lock<std::mutex> lock(mutex_);
  for (auto& t : barrier_counter_) {
    t.second = 0;
  }
Y
Yancey1989 已提交
102
  need_reset_all_vars_ = false;
103 104 105 106 107 108 109 110 111
}

void RPCServer::RegisterRPC(const std::string& rpc_name,
                            RequestHandler* handler, int thread_num) {
  rpc_call_map_[rpc_name] = handler;
  rpc_thread_num_[rpc_name] = thread_num;

  static int cond = -1;
  rpc_cond_map_[rpc_name] = ++cond;
Q
Qiao Longfei 已提交
112
  VLOG(3) << "RegisterRPC rpc_name:" << rpc_name << ", handler:" << handler
M
minqiyang 已提交
113
          << ", cond:" << rpc_cond_map_[rpc_name];
114 115 116
}

void RPCServer::SetCond(const std::string& rpc_name) {
M
minqiyang 已提交
117
  VLOG(3) << "RPCServer SetCond " << rpc_name;
118 119 120 121 122 123 124 125 126
  {
    std::unique_lock<std::mutex> lock(mutex_);
    cur_cond_ = rpc_cond_map_[rpc_name];
  }

  rpc_cond_.notify_all();
}

void RPCServer::WaitCond(const std::string& rpc_name) {
Q
Qiao Longfei 已提交
127
  VLOG(3) << "RPCServer WaitCond " << rpc_name;
128 129 130 131 132 133 134 135 136 137 138
  int cond = 0;
  {
    std::unique_lock<std::mutex> lock(mutex_);
    cond = rpc_cond_map_[rpc_name];
  }

  std::unique_lock<std::mutex> lock(mutex_);
  rpc_cond_.wait(
      lock, [=] { return (cur_cond_.load() == cond || exit_flag_.load()); });
}

139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
void RPCServer::RegisterVar(const std::string& var_name,
                            const std::string& rpc_name,
                            framework::Scope* scope,
                            platform::DeviceContext* dev_ctx) {
  MonomerHandle h;
  h.var_name_ = var_name;
  h.rpc_name_ = rpc_name;
  h.scope_ = scope;
  h.dev_ctx_ = dev_ctx;

  {
    std::unique_lock<std::mutex> lock(mutex_);
    if (var_map_.find(var_name) != var_map_.end()) {
      PADDLE_ENFORCE(false, "%s alreay in var_map", var_name);
    }
    var_map_[var_name] = h;
  }

  rpc_cond_.notify_all();
Q
Qiao Longfei 已提交
158
  VLOG(3) << "RegisterVar context:" << h.String();
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
}

void RPCServer::IncreaseVarBarrier(const std::string& var_name) {
  int b = 0;
  MonomerHandle h;
  {
    std::unique_lock<std::mutex> lock(mutex_);
    b = ++var_map_[var_name].barrier_;
    h = var_map_[var_name];
  }

  if (b >= client_num_) {
    barrier_cond_.notify_all();
  }

Q
Qiao Longfei 已提交
174
  VLOG(3) << "IncreaseVarBarrier context:" << h.String();
175 176 177
}

void RPCServer::WaitVarBarrier(const std::string& var_name) {
Q
Qiao Longfei 已提交
178
  VLOG(3) << "WaitVarBarrier var_name:" << var_name;
179 180 181 182 183 184 185

  std::unique_lock<std::mutex> lock(mutex_);
  barrier_cond_.wait(lock, [&]() {
    return ((var_map_[var_name].barrier_ >= client_num_ && client_num_ != 0) ||
            exit_flag_.load());
  });

Q
Qiao Longfei 已提交
186
  VLOG(3) << "WaitVarBarrier context: " << var_map_[var_name].String();
187 188 189
}

void RPCServer::SetVarCond(const std::string& var_name) {
Q
Qiao Longfei 已提交
190
  VLOG(3) << "SetVarCond var_name:" << var_name;
191 192 193 194 195 196 197 198 199
  {
    std::unique_lock<std::mutex> lock(mutex_);
    if (var_map_.find(var_name) != var_map_.end()) {
      rpc_cond_.notify_all();
    }
  }
}

void RPCServer::WaitVarCond(const std::string& var_name) {
Q
Qiao Longfei 已提交
200
  VLOG(3) << "WaitVarCond var_name:" << var_name;
201 202 203 204 205 206

  std::unique_lock<std::mutex> lock(mutex_);
  rpc_cond_.wait(lock, [=] {
    return (var_map_.find(var_name) != var_map_.end() || exit_flag_.load());
  });

Q
Qiao Longfei 已提交
207
  VLOG(3) << "WaitVarCond var_name:" << var_name << " end";
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
}

MonomerHandle RPCServer::GetMonomer(const std::string& var_name) {
  MonomerHandle h;
  {
    std::unique_lock<std::mutex> lock(mutex_);
    h = var_map_[var_name];
  }

  return h;
}

void RPCServer::ClearRegisteredVars() {
  std::unique_lock<std::mutex> lock(mutex_);
  var_map_.clear();
}

void RPCServer::ClearVar(const std::string& var_name) {
  std::unique_lock<std::mutex> lock(mutex_);
  var_map_.erase(var_name);
}
229
}  // namespace distributed
230 231
}  // namespace operators
}  // namespace paddle