Skip to content

Commit

Permalink
rm dygraph_to_static eager guard tests part2 minst2ptb_lm (PaddlePadd…
Browse files Browse the repository at this point in the history
…le#48793)

* rm dygraph_to_static eager guard tests part2 minst2ptb_lm
  • Loading branch information
yjjiang11 authored Dec 8, 2022
1 parent ae61a7f commit 082886c
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
from paddle.fluid.dygraph import to_variable
from paddle.fluid.dygraph.base import switch_to_static_graph
from paddle.fluid.dygraph.io import INFER_MODEL_SUFFIX, INFER_PARAMS_SUFFIX
from paddle.fluid.framework import _test_eager_guard
from paddle.fluid.optimizer import AdamOptimizer
from paddle.nn import Linear

Expand Down Expand Up @@ -168,17 +167,6 @@ def test_mnist_to_static(self):
dygraph_loss, static_loss
),
)
with _test_eager_guard():
dygraph_loss = self.train_dygraph()
static_loss = self.train_static()
np.testing.assert_allclose(
dygraph_loss,
static_loss,
rtol=1e-05,
err_msg='dygraph is {}\n static_res is \n{}'.format(
dygraph_loss, static_loss
),
)

def test_mnist_declarative_cpu_vs_mkldnn(self):
dygraph_loss_cpu = self.train_dygraph()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,4 @@ def train(self, to_static=False):


if __name__ == '__main__':
with paddle.fluid.framework._test_eager_guard():
unittest.main()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,4 @@ def train(self, to_static=False):


if __name__ == '__main__':
with paddle.fluid.framework._test_eager_guard():
unittest.main()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -726,5 +726,4 @@ def verify_predict(self):


if __name__ == '__main__':
with fluid.framework._test_eager_guard():
unittest.main()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import unittest

import paddle
import paddle.fluid as fluid


class MyLayer(paddle.nn.Layer):
Expand Down Expand Up @@ -63,5 +62,4 @@ def test_order_1(self):


if __name__ == '__main__':
with fluid.framework._test_eager_guard():
unittest.main()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -439,5 +439,4 @@ def test_remove_comment(self):


if __name__ == '__main__':
with fluid.framework._test_eager_guard():
unittest.main()
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,4 @@ def test_check_result(self):


if __name__ == '__main__':
# switch into new eager mode
with fluid.framework._test_eager_guard():
unittest.main()
unittest.main()

0 comments on commit 082886c

Please sign in to comment.