Skip to content

Commit

Permalink
Remove debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
velconia committed Jul 5, 2018
1 parent 207d1b8 commit 0d04545
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 30 deletions.
2 changes: 1 addition & 1 deletion cmake/external/grpc.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ExternalProject_Add(
#URL "http://paddlepaddledeps.bj.bcebos.com/grpc-v1.10.x.tar.gz"
URL "http://localhost:8000/grpc-v1.13.x.tar.gz"
#URL_MD5 "1f268a2aff6759839dccd256adcc91cf"
URL_MD5 "c93a1ba08a449e5b800524131cc900a8"
URL_MD5 "f5ae795081d7e5befa648876aee62cc8"
PREFIX ${GRPC_SOURCES_DIR}
UPDATE_COMMAND ""
CONFIGURE_COMMAND ""
Expand Down
29 changes: 0 additions & 29 deletions paddle/fluid/operators/distributed/grpc_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ limitations under the License. */
#include "paddle/fluid/operators/distributed/grpc_client.h"

#include <sys/time.h>
#include <unistd.h>

#include <limits>

Expand Down Expand Up @@ -43,37 +42,11 @@ void GRPCClient::SendComplete() {
}

GRPCClient::~GRPCClient() {
LOG(ERROR) << "start sleep:";
usleep(10000);
for (auto& it : channels_) {
LOG(ERROR) << "channel service config:"
<< it.second->GetServiceConfigJSON();
LOG(ERROR) << "channel lb config:"
<< it.second->GetLoadBalancingPolicyName();
}

Wait();

for (auto& it : channels_) {
LOG(ERROR) << "channel service config:"
<< it.second->GetServiceConfigJSON();
LOG(ERROR) << "channel lb config:"
<< it.second->GetLoadBalancingPolicyName();
}

cq_.Shutdown();
for (auto& it : channels_) {
LOG(ERROR) << "channel service config:"
<< it.second->GetServiceConfigJSON();
LOG(ERROR) << "channel lb config:"
<< it.second->GetLoadBalancingPolicyName();
}

{
std::lock_guard<std::mutex> guard(chan_mutex_);
for (auto& it : channels_) {
LOG(ERROR) << "channel ptr use count:" << it.second.use_count();
LOG(ERROR) << "channel ptr use count:" << it.second.get();
it.second.reset();
}
channels_.clear();
Expand Down Expand Up @@ -330,9 +303,7 @@ std::shared_ptr<grpc::Channel> GRPCClient::GetChannel(const std::string& ep) {

auto ch =
grpc::CreateCustomChannel(ep, grpc::InsecureChannelCredentials(), args);
LOG(ERROR) << "get channel ep: " << ep << "count: " << ch.use_count();
channels_[ep] = ch;
LOG(ERROR) << "get channel ep: " << ep << "count: " << ch.use_count();
return ch;
}

Expand Down

0 comments on commit 0d04545

Please sign in to comment.