From 71e3186fd3b3b62aeb43a697432565a9434fa9f5 Mon Sep 17 00:00:00 2001 From: Gunhan Gulsoy Date: Thu, 8 Sep 2016 09:48:05 -0800 Subject: [PATCH] Reduce shard count for tests Change: 132573817 --- tensorflow/python/kernel_tests/BUILD | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tensorflow/python/kernel_tests/BUILD b/tensorflow/python/kernel_tests/BUILD index ad257a4339a..d65d5d61d25 100644 --- a/tensorflow/python/kernel_tests/BUILD +++ b/tensorflow/python/kernel_tests/BUILD @@ -262,7 +262,6 @@ cuda_py_tests( srcs = [ "batch_matrix_band_part_op_test.py", "conv_ops_3d_test.py", - "cwise_ops_test.py", "embedding_ops_test.py", "linalg_grad_test.py", "svd_op_test.py", @@ -270,8 +269,18 @@ cuda_py_tests( additional_deps = [ "//tensorflow:tensorflow_py", ], + shard_count = 20, +) + +cuda_py_test( + name = "cwise_ops_test", + size = "medium", + srcs = ["cwise_ops_test.py"], + additional_deps = [ + "//tensorflow:tensorflow_py", + ], shard_count = 50, - tags = ["notap"], # b/30226163 + tags = ["notap"], # http://b/30226163 ) filegroup(