提交 3e703e91 编写于 作者: T typhoonzero

remove log

上级 1cb96359
...@@ -49,17 +49,14 @@ class SendOp : public framework::OperatorBase { ...@@ -49,17 +49,14 @@ class SendOp : public framework::OperatorBase {
std::vector<std::string> epmap = Attr<std::vector<std::string>>("epmap"); std::vector<std::string> epmap = Attr<std::vector<std::string>>("epmap");
// TODO(typhoonzero): use async calls to send multiple variable asyncly. // TODO(typhoonzero): use async calls to send multiple variable asyncly.
for (size_t i = 0; i < ins.size(); ++i) { for (size_t i = 0; i < ins.size(); ++i) {
VLOG(3) << "sending " << ins[i];
bool ret = client_map_[epmap[i]]->SendVariable(scope, ins[i]); bool ret = client_map_[epmap[i]]->SendVariable(scope, ins[i]);
if (!ret) { if (!ret) {
LOG(ERROR) << "send variable error: " << ins[i]; LOG(ERROR) << "send variable error: " << ins[i];
} }
} }
VLOG(3) << "waiting batch ";
// TODO(typhoonzero): support async optimization // TODO(typhoonzero): support async optimization
client_map_[epmap[0]]->Wait(); client_map_[epmap[0]]->Wait();
for (size_t i = 0; i < outs.size(); ++i) { for (size_t i = 0; i < outs.size(); ++i) {
VLOG(3) << "getting " << outs[i];
bool ret = client_map_[epmap[i]]->GetVariable(scope, outs[i]); bool ret = client_map_[epmap[i]]->GetVariable(scope, outs[i]);
if (!ret) { if (!ret) {
LOG(ERROR) << "GetVariable error: " << outs[i]; LOG(ERROR) << "GetVariable error: " << outs[i];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册