test_exception.py 2.5 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

15 16
import unittest

17 18
import numpy

19 20
import paddle
import paddle.fluid as fluid
21
import paddle.fluid.core as core
Y
Yu Yang 已提交
22 23 24 25


class TestException(unittest.TestCase):
    def test_exception(self):
M
minqiyang 已提交
26
        exception = None
27 28
        try:
            core.__unittest_throw_exception__()
29
        except RuntimeError as ex:
30
            self.assertIn("This is a test of exception", str(ex))
M
minqiyang 已提交
31
            exception = ex
32

M
minqiyang 已提交
33
        self.assertIsNotNone(exception)
Y
Yu Yang 已提交
34 35


36 37 38 39 40 41 42
class TestExceptionNoCStack(unittest.TestCase):
    def setUp(self):
        paddle.enable_static()
        # test no C++ stack format
        fluid.set_flags({'FLAGS_call_stack_level': 1})

    def test_exception_in_static_mode(self):
G
GGBond8488 已提交
43 44
        x = paddle.static.data(name='X', shape=[-1, 13], dtype='float32')
        y = paddle.static.data(name='Y', shape=[-1, 1], dtype='float32')
C
Charles-hit 已提交
45
        predict = paddle.static.nn.fc(x, size=1)
46
        loss = paddle.nn.functional.square_error_cost(input=predict, label=y)
47
        avg_loss = paddle.mean(loss)
48 49 50 51 52 53 54 55 56 57 58

        fluid.optimizer.SGD(learning_rate=0.01).minimize(avg_loss)

        place = fluid.CPUPlace()
        exe = fluid.Executor(place)
        exe.run(fluid.default_startup_program())

        x = numpy.random.random(size=(8, 12)).astype('float32')
        y = numpy.random.random(size=(8, 1)).astype('float32')

        with self.assertRaises(ValueError):
59 60 61 62 63
            exe.run(
                fluid.default_main_program(),
                feed={'X': x, 'Y': y},
                fetch_list=[avg_loss.name],
            )
64 65 66 67 68

    def test_exception_in_dynamic_mode(self):
        place = fluid.CPUPlace()
        with fluid.dygraph.guard(place):
            x = numpy.random.random(size=(10, 2)).astype('float32')
69
            linear = paddle.nn.Linear(1, 10)
70 71 72 73 74
            data = fluid.dygraph.to_variable(x)
            with self.assertRaises(ValueError):
                res = linear(data)


Y
Yu Yang 已提交
75 76
if __name__ == "__main__":
    unittest.main()