-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ParameterServerController for parameter server python api #1051
Merged
jacquesqiao
merged 11 commits into
PaddlePaddle:develop
from
jacquesqiao:add-pserver-util
Jan 11, 2017
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
f3c61cb
add pserver util and parameter server config
jacquesqiao f9a65b0
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
jacquesqiao 95f20b9
add comment and refine code
jacquesqiao cfbb4c4
use unique_ptr
jacquesqiao 7783982
change FLAGS to proto config in PServerUtil
jacquesqiao 93e74f8
rename PServerUtil to PServerController
jacquesqiao 3f6c2b3
rm initConfigByGflags of PServerController, use stack value instead
jacquesqiao 5aaaef4
rename PServerController to ParameterServerController
jacquesqiao b1eeb2e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
jacquesqiao d32c7a6
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
jacquesqiao aa9f516
code refine, add comment and some naming problem
jacquesqiao File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
/* 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 "ParameterServerController.h" | ||
|
||
namespace paddle { | ||
|
||
ParameterServerController::ParameterServerController( | ||
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(); | ||
|
||
if (config.nics().empty()) { | ||
parameterServers_.resize(numPorts); | ||
for (int i = 0; i < numPorts; ++i) { | ||
if (config.rdma_tcp() == "rdma") { | ||
parameterServers_[i].reset( | ||
new ParameterServer2(std::string(), config.port() + i, rdmaCpu++)); | ||
rdmaCpu = rdmaCpu % onlineCpus; | ||
} else { | ||
parameterServers_[i].reset( | ||
new ParameterServer2(std::string(), config.port() + i)); | ||
} | ||
CHECK(parameterServers_[i]->init()) << "Fail to initialize parameter " | ||
"server on port " | ||
<< config.port() + i; | ||
} | ||
} else { | ||
str::split(config.nics(), ',', &devices); | ||
parameterServers_.resize(devices.size() * numPorts); | ||
for (int i = 0; i < numPorts; ++i) { | ||
for (size_t j = 0; j < devices.size(); ++j) { | ||
if (config.rdma_tcp() == "rdma") { | ||
parameterServers_[i * devices.size() + j].reset(new ParameterServer2( | ||
getIpAddr(devices[j]), config.port() + i, rdmaCpu++)); | ||
rdmaCpu = rdmaCpu % onlineCpus; | ||
} else { | ||
parameterServers_[i * devices.size() + j].reset( | ||
new ParameterServer2(getIpAddr(devices[j]), config.port() + i)); | ||
} | ||
CHECK(parameterServers_[i * devices.size() + j]->init()) | ||
<< "Fail to initialize parameter server with device " << devices[j] | ||
<< config.port() + i; | ||
} | ||
} | ||
} | ||
} | ||
|
||
ParameterServerController::~ParameterServerController() { this->wait(); } | ||
|
||
ParameterServerController* ParameterServerController::createFromGflags() { | ||
ParameterServerConfig config; | ||
|
||
config.set_nics(FLAGS_nics); | ||
config.set_rdma_tcp(FLAGS_rdma_tcp); | ||
config.set_port(FLAGS_port); | ||
config.set_ports_num(FLAGS_ports_num); | ||
config.set_ports_num_for_sparse(FLAGS_ports_num_for_sparse); | ||
|
||
return create(config); | ||
} | ||
|
||
ParameterServerController* ParameterServerController::create( | ||
const ParameterServerConfig& config) { | ||
return new ParameterServerController(config); | ||
} | ||
|
||
void ParameterServerController::start() { | ||
LOG(INFO) << "number of parameterServer instances: " | ||
<< parameterServers_.size(); | ||
int i = 0; | ||
for (const auto& parameterServer : parameterServers_) { | ||
LOG(INFO) << "Starting parameterServer[" << i << "]"; | ||
parameterServer->start(); | ||
i++; | ||
} | ||
} | ||
|
||
void ParameterServerController::wait() { | ||
int i = 0; | ||
for (const auto& parameterServer : parameterServers_) { | ||
LOG(INFO) << "Waiting parameterServer[" << i << "]"; | ||
parameterServer->join(); | ||
i++; | ||
} | ||
} | ||
|
||
} // namespace paddle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* 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. */ | ||
|
||
#pragma once | ||
|
||
#include "ParameterServer2.h" | ||
#include "ParameterServerConfig.pb.h" | ||
#include "RDMANetwork.h" | ||
#include "paddle/utils/StringUtil.h" | ||
|
||
namespace paddle { | ||
|
||
/** | ||
* @brief ParameterServerController is used for create, init and manage multi | ||
* parameter server instances. The num of the instances is decided by port | ||
* num(the ports number for parameter send) and network devices configured | ||
* by gflags or proto. | ||
*/ | ||
class ParameterServerController final { | ||
public: | ||
DISABLE_COPY(ParameterServerController); | ||
|
||
/** | ||
* @brief Ctor, Create a ParameterServerController from ParameterServerConfig. | ||
*/ | ||
explicit ParameterServerController(const ParameterServerConfig& config); | ||
|
||
/** | ||
* @brief Dtor. | ||
*/ | ||
~ParameterServerController(); | ||
|
||
/** | ||
* @brief create ParameterServerController from gflags, this is used for | ||
* compatibility with the old usage of configuration by gflags. | ||
*/ | ||
static ParameterServerController* createFromGflags(); | ||
|
||
/** | ||
* @brief create ParameterServerController with ParameterServerConfig, remove | ||
* gflags from ParameterServer. Init all ParameterServer2 instances according | ||
* to | ||
* the config. | ||
*/ | ||
static ParameterServerController* create(const ParameterServerConfig& config); | ||
|
||
/** | ||
* @brief start all ParameterServer2 instances in this | ||
* ParameterServerController. | ||
*/ | ||
void start(); | ||
|
||
/** | ||
* @brief join and wait for all ParameterServer2 instances thread in this | ||
* ParameterServerController. | ||
*/ | ||
void wait(); | ||
|
||
private: | ||
std::vector<std::unique_ptr<ParameterServer2>> parameterServers_; | ||
}; | ||
|
||
} // namespace paddle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
新增的class应该有class comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done