Remove async runs of cluster update with pending nodes tests.

Cluster update in parallel with async nodes is not supported yet.

PiperOrigin-RevId: 309269820
Change-Id: I825049e44f7098bcf323b381275b384b6636b1ff
This commit is contained in:
Haoyu Zhang 2020-04-30 11:51:27 -07:00 committed by TensorFlower Gardener
parent 0dc4fd5959
commit 3df3300d58
2 changed files with 0 additions and 4 deletions

View File

@ -960,7 +960,6 @@ cuda_py_test(
shard_count = 8,
tags = [
"no_oss", # This test launches local server
"notap", # TODO(b/155407846)
],
deps = [
"//tensorflow/python:array_ops",

View File

@ -300,7 +300,6 @@ class DynamicClusterTest(test.TestCase, parameterized.TestCase):
y = worker_fn(x1)
np.testing.assert_array_equal([[2, 2], [2, 2]], y.numpy())
@test_util.run_in_async_and_sync_mode
def testPendingNodesServerReplaced(self):
"""Update cluster when nodes are still pending on remote workers."""
with ops.device(self.device_local):
@ -371,10 +370,8 @@ class DynamicClusterTest(test.TestCase, parameterized.TestCase):
for result in t1_results + t2_results:
np.testing.assert_array_equal([[2, 2], [2, 2]], result)
@test_util.run_in_async_and_sync_mode
def testMultiThreadPendingNodesLockFree(self):
"""Update cluster when other remote function calls are being launched."""
self.skipTest("b/154053481")
with ops.device(self.device_t1):
x1 = array_ops.ones([2, 2])