test_exception.py 2.6 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
M
minqiyang 已提交
20
import paddle.compat as cpt
21
import paddle.fluid.core as core
Y
Yu Yang 已提交
22 23 24


class TestException(unittest.TestCase):
25

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

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


37
class TestExceptionNoCStack(unittest.TestCase):
38

39 40 41 42 43 44 45 46 47 48
    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)
49
        avg_loss = paddle.mean(loss)
50 51 52 53 54 55 56 57 58 59 60 61

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

    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 已提交
78 79
if __name__ == "__main__":
    unittest.main()