From cdf62283bf5df8cac523a3d1423cecbce42fcd24 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Tue, 20 Aug 2019 14:10:17 -0700 Subject: [PATCH 1/2] Skip test on Windows platform. PiperOrigin-RevId: 264463634 --- tensorflow/python/eager/BUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tensorflow/python/eager/BUILD b/tensorflow/python/eager/BUILD index a355c636a57..234d13f2c93 100644 --- a/tensorflow/python/eager/BUILD +++ b/tensorflow/python/eager/BUILD @@ -258,7 +258,10 @@ cuda_py_test( "//tensorflow/python:nn_grad", "//tensorflow/python:training", ], - tags = ["no_rocm"], + tags = [ + "no_rocm", + "no_windows", #TODO(b/139745667) + ], xla_enable_strict_auto_jit = True, ) From 4a416ef7920579ba6297521ed9375f6ef93948cf Mon Sep 17 00:00:00 2001 From: Saurabh Saxena Date: Tue, 20 Aug 2019 15:02:04 -0700 Subject: [PATCH 2/2] Internal change PiperOrigin-RevId: 264475263 --- tensorflow/python/kernel_tests/BUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/tensorflow/python/kernel_tests/BUILD b/tensorflow/python/kernel_tests/BUILD index e4651ee1f65..3baa43e23c8 100644 --- a/tensorflow/python/kernel_tests/BUILD +++ b/tensorflow/python/kernel_tests/BUILD @@ -3134,6 +3134,7 @@ cuda_py_test( "//tensorflow/python:variables", ], shard_count = 10, + tags = ["no_windows"], # b/139739217 xla_enable_strict_auto_jit = True, )