From 3e703e914a827646e0338e9282343a148dbba2d9 Mon Sep 17 00:00:00 2001 From: typhoonzero Date: Wed, 27 Dec 2017 14:12:51 +0800 Subject: [PATCH] remove log --- paddle/operators/send_op.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/paddle/operators/send_op.cc b/paddle/operators/send_op.cc index 317db0867e..6e82938683 100644 --- a/paddle/operators/send_op.cc +++ b/paddle/operators/send_op.cc @@ -49,17 +49,14 @@ class SendOp : public framework::OperatorBase { std::vector epmap = Attr>("epmap"); // TODO(typhoonzero): use async calls to send multiple variable asyncly. for (size_t i = 0; i < ins.size(); ++i) { - VLOG(3) << "sending " << ins[i]; bool ret = client_map_[epmap[i]]->SendVariable(scope, ins[i]); if (!ret) { LOG(ERROR) << "send variable error: " << ins[i]; } } - VLOG(3) << "waiting batch "; // TODO(typhoonzero): support async optimization client_map_[epmap[0]]->Wait(); for (size_t i = 0; i < outs.size(); ++i) { - VLOG(3) << "getting " << outs[i]; bool ret = client_map_[epmap[i]]->GetVariable(scope, outs[i]); if (!ret) { LOG(ERROR) << "GetVariable error: " << outs[i];