From d32de7e6e1d6a37b48d50c6570dd15f14413b674 Mon Sep 17 00:00:00 2001 From: Qiao Longfei Date: Wed, 28 Nov 2018 16:14:32 +0800 Subject: [PATCH] fix code format test=develop --- paddle/fluid/operators/distributed/parameter_prefetch.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/operators/distributed/parameter_prefetch.cc b/paddle/fluid/operators/distributed/parameter_prefetch.cc index 859ea77a51..9db5345153 100644 --- a/paddle/fluid/operators/distributed/parameter_prefetch.cc +++ b/paddle/fluid/operators/distributed/parameter_prefetch.cc @@ -185,7 +185,7 @@ void prefetch(const std::string& id_name, const std::string& out_name, for (size_t i = 0; i < in_var_names.size(); i++) { if (NeedSend(local_scope, in_var_names[i])) { VLOG(3) << "sending " << in_var_names[i] << " to " << epmap[i] - << " to get " << out_var_names[i] << " back"; + << " to get " << out_var_names[i] << " back"; rets.push_back(rpc_client->AsyncPrefetchVar( epmap[i], ctx, local_scope, in_var_names[i], out_var_names[i], table_names[i])); -- GitLab