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 17 18 19
import numpy
import unittest

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


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

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


35 36 37 38 39 40 41 42 43 44 45
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):
        x = fluid.layers.data(name='X', shape=[-1, 13], dtype='float32')
        y = fluid.layers.data(name='Y', shape=[-1, 1], dtype='float32')
        predict = fluid.layers.fc(input=x, size=1, act=None)
        loss = fluid.layers.square_error_cost(input=predict, label=y)
46
        avg_loss = paddle.mean(loss)
47 48 49 50 51 52 53 54 55 56 57

        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):
58 59 60 61 62
            exe.run(
                fluid.default_main_program(),
                feed={'X': x, 'Y': y},
                fetch_list=[avg_loss.name],
            )
63 64 65 66 67 68 69 70 71 72 73

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


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