PServerUtil.cpp 3.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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 "PServerUtil.h"

namespace paddle {

PServerUtil::PServerUtil(const ParameterServerConfig& config) {
  // round robin to load balance RDMA server ENGINE
  std::vector<std::string> devices;
  int rdmaCpu = 0;
  int onlineCpus = rdma::numCpus();
  int numPorts = config.ports_num() + config.ports_num_for_sparse();

26
  if (config.nics().empty()) {
27 28
    pservers_.resize(numPorts);
    for (int i = 0; i < numPorts; ++i) {
29
      if (config.rdma_tcp() == "rdma") {
30
        pservers_[i].reset(
31
            new ParameterServer2(std::string(), config.port() + i, rdmaCpu++));
32 33
        rdmaCpu = rdmaCpu % onlineCpus;
      } else {
34 35
        pservers_[i].reset(
            new ParameterServer2(std::string(), config.port() + i));
36 37
      }
      CHECK(pservers_[i]->init()) << "Fail to initialize parameter server"
38
                                  << config.port() + i;
39 40
    }
  } else {
41
    str::split(config.nics(), ',', &devices);
42 43 44
    pservers_.resize(devices.size() * numPorts);
    for (int i = 0; i < numPorts; ++i) {
      for (size_t j = 0; j < devices.size(); ++j) {
45
        if (config.rdma_tcp() == "rdma") {
46
          pservers_[i * devices.size() + j].reset(new ParameterServer2(
47
              getIpAddr(devices[j]), config.port() + i, rdmaCpu++));
48 49 50
          rdmaCpu = rdmaCpu % onlineCpus;
        } else {
          pservers_[i * devices.size() + j].reset(
51
              new ParameterServer2(getIpAddr(devices[j]), config.port() + i));
52 53 54
        }
        CHECK(pservers_[i * devices.size() + j]->init())
            << "Fail to initialize parameter server" << devices[j]
55
            << config.port() + i;
56 57 58 59 60 61 62
      }
    }
  }
}

PServerUtil::~PServerUtil() { this->join(); }

Q
qiaolongfei 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
ParameterServerConfig* PServerUtil::initConfig() {
  ParameterServerConfig* config = new ParameterServerConfig();
  config->set_nics(FLAGS_nics);
  config->set_port(FLAGS_port);
  config->set_ports_num(FLAGS_ports_num);
  config->set_rdma_tcp(FLAGS_rdma_tcp);
  return config;
}

PServerUtil* PServerUtil::createWithGflags() {
  auto& pServerConfig = *paddle::PServerUtil::initConfig();
  return create(pServerConfig);
}

PServerUtil* PServerUtil::create(const ParameterServerConfig& config) {
  return new PServerUtil(config);
}

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
void PServerUtil::start() {
  LOG(INFO) << "pserver sizes : " << pservers_.size();
  int i = 0;
  for (const auto& pserver : pservers_) {
    LOG(INFO) << "pserver started : " << i;
    pserver->start();
    i++;
  }
}

void PServerUtil::join() {
  LOG(INFO) << "pserver sizes : " << pservers_.size();
  int i = 0;
  for (const auto& pserver : pservers_) {
    LOG(INFO) << "pserver join : " << i;
    pserver->join();
    i++;
  }
}

}  // namespace paddle