From 8bae2b2dadcc8aa128f79077ee495d58f076b130 Mon Sep 17 00:00:00 2001 From: Yuefeng Zhou Date: Thu, 23 May 2019 18:20:23 -0700 Subject: [PATCH] Remove duplicate logging. PiperOrigin-RevId: 249754324 --- tensorflow/python/distribute/cross_device_ops.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tensorflow/python/distribute/cross_device_ops.py b/tensorflow/python/distribute/cross_device_ops.py index 1181415a4b9..1b96d80800b 100644 --- a/tensorflow/python/distribute/cross_device_ops.py +++ b/tensorflow/python/distribute/cross_device_ops.py @@ -1028,10 +1028,6 @@ class CollectiveAllReduce(CrossDeviceOps): def _batch_all_reduce(self, reduce_op, per_replica_values): """All reduce algorithm in a batch.""" - logging.log_first_n( - logging.INFO, "Collective batch_all_reduce: %d all-reduces, " - "num_workers = %d" % (len(per_replica_values), self._num_workers), 10) - dense_values, dense_indices, sparse_values, sparse_indices = ( cross_device_utils.split_by_sparsity(per_replica_values)) if dense_values: