From 33d6328d1617f18e95ad516f4840a05be42391e8 Mon Sep 17 00:00:00 2001 From: Ayush Dubey <ayushd@google.com> Date: Fri, 26 Oct 2018 13:47:23 -0700 Subject: [PATCH] Correctly log default ranking in collective param resolution. PiperOrigin-RevId: 218907613 --- .../core/common_runtime/collective_param_resolver_local.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tensorflow/core/common_runtime/collective_param_resolver_local.cc b/tensorflow/core/common_runtime/collective_param_resolver_local.cc index 7cb90de3c79..1bc873d0c5c 100644 --- a/tensorflow/core/common_runtime/collective_param_resolver_local.cc +++ b/tensorflow/core/common_runtime/collective_param_resolver_local.cc @@ -445,8 +445,7 @@ void CollectiveParamResolverLocal::CompleteDefaultRanking( ir->shared.instance.task_names = new_task_names; if (VLOG_IS_ON(2)) { string buf; - for (const auto& d : cp->instance.device_names) - strings::StrAppend(&buf, "\n", d); + for (const auto& d : new_device_names) strings::StrAppend(&buf, "\n", d); VLOG(2) << "Optimized device order for " << ir->shared.name << ": " << buf; } }