aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/distribute/python/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/distribute/python/BUILD')
-rw-r--r--tensorflow/contrib/distribute/python/BUILD38
1 files changed, 38 insertions, 0 deletions
diff --git a/tensorflow/contrib/distribute/python/BUILD b/tensorflow/contrib/distribute/python/BUILD
index eba0dd0ea3..f5d7e24ae2 100644
--- a/tensorflow/contrib/distribute/python/BUILD
+++ b/tensorflow/contrib/distribute/python/BUILD
@@ -587,6 +587,7 @@ cuda_py_test(
],
tags = [
"multi_and_single_gpu",
+ "no_windows_gpu",
"notsan",
],
)
@@ -609,3 +610,40 @@ cuda_py_test(
"no_pip",
],
)
+
+cuda_py_test(
+ name = "warm_starting_util_test",
+ size = "medium",
+ srcs = ["warm_starting_util_test.py"],
+ additional_deps = [
+ ":combinations",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:framework_ops",
+ "//tensorflow/python:training",
+ "//tensorflow/python:variable_scope",
+ "//tensorflow/python:variables",
+ ],
+ tags = [
+ "multi_and_single_gpu",
+ "no_pip",
+ ],
+)
+
+cuda_py_test(
+ name = "checkpoint_utils_test",
+ size = "medium",
+ srcs = ["checkpoint_utils_test.py"],
+ additional_deps = [
+ ":combinations",
+ "//tensorflow/python:client_testlib",
+ "//tensorflow/python:checkpoint_utils_test",
+ "//tensorflow/python:framework_ops",
+ "//tensorflow/python:training",
+ "//tensorflow/python:variable_scope",
+ "//tensorflow/python:variables",
+ ],
+ tags = [
+ "multi_and_single_gpu",
+ "no_pip",
+ ],
+)