From 576ff3bf9b28eb9411d2c6bdf216224cfda56c66 Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Fri, 5 Aug 2016 13:06:22 -0800 Subject: [PATCH] Reduce iterations in localhost cluster performance test. Change: 129480234 --- .../python/training/localhost_cluster_performance_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/training/localhost_cluster_performance_test.py b/tensorflow/python/training/localhost_cluster_performance_test.py index a679cd36a25..c46adebbb6b 100644 --- a/tensorflow/python/training/localhost_cluster_performance_test.py +++ b/tensorflow/python/training/localhost_cluster_performance_test.py @@ -74,7 +74,7 @@ class CreateLocalClusterBenchmark(tf.test.Benchmark): def benchmarkCreateLocalCluster(self): deltas = [] - iters = 50 + iters = 5 for _ in range(iters): start_time = time.time() create_local_cluster(num_workers=1, num_ps=10)