Skip to content

Commit 8c1eea9

Browse files
authored
Disable async dist tests (#14047)
* disable async dist test * update test=develop
1 parent 2256fae commit 8c1eea9

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

python/paddle/fluid/tests/unittests/test_dist_mnist.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ def _setup_config(self):
4040
self._sync_mode = False
4141
self._use_reduce = False
4242

43-
def test_dist_train(self):
43+
# FIXME(typhoonzero): fix async mode test later
44+
def no_test_dist_train(self):
4445
self.check_with_place("dist_mnist.py", delta=200)
4546

4647

python/paddle/fluid/tests/unittests/test_dist_se_resnext.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ def _setup_config(self):
4040
self._sync_mode = False
4141
self._use_reader_alloc = False
4242

43-
def test_dist_train(self):
43+
#FIXME(typhoonzero): fix async mode later
44+
def no_test_dist_train(self):
4445
self.check_with_place("dist_se_resnext.py", delta=100)
4546

4647

python/paddle/fluid/tests/unittests/test_dist_simnet_bow.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ def _setup_config(self):
4242
self._sync_mode = False
4343
self._enforce_place = "CPU"
4444

45-
def test_simnet_bow(self):
45+
#FIXME(typhoonzero): fix async tests later
46+
def no_test_simnet_bow(self):
4647
need_envs = {
4748
"IS_DISTRIBUTED": '0',
4849
"IS_SPARSE": '0',
@@ -78,7 +79,8 @@ def _setup_config(self):
7879
self._sync_mode = False
7980
self._enforce_place = "CPU"
8081

81-
def test_simnet_bow(self):
82+
#FIXME(typhoonzero): fix async tests later
83+
def no_test_simnet_bow(self):
8284
need_envs = {
8385
"IS_DISTRIBUTED": '0',
8486
"IS_SPARSE": '1',

0 commit comments

Comments
 (0)