test_multiprocess_reader_exception.py 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# 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
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# 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.

import paddle.fluid as fluid
from paddle.fluid.io import multiprocess_reader
import unittest
import numpy as np
import six
import sys


class TestMultiprocessReaderException(unittest.TestCase):
    def setUp(self):
        self.use_pipe = False
        self.raise_exception = False

    def places(self):
        if fluid.is_compiled_with_cuda():
            return [fluid.CPUPlace(), fluid.CUDAPlace(0)]
        else:
            return [fluid.CPUPlace()]

    def main_impl(self, place, iterable):
        def fake_reader():
            def __impl__():
                for _ in range(40):
                    if not self.raise_exception:
                        yield list(
                            np.random.uniform(
                                low=-1, high=1, size=[10])),
                    else:
                        raise ValueError()

            return __impl__

        with fluid.program_guard(fluid.Program(), fluid.Program()):
            image = fluid.layers.data(name='image', dtype='float32', shape=[10])

            reader = fluid.io.PyReader(
                feed_list=[image], capacity=2, iterable=iterable)

            image_p_1 = image + 1

            decorated_reader = multiprocess_reader(
                [fake_reader(), fake_reader()], use_pipe=self.use_pipe)

            if isinstance(place, fluid.CUDAPlace):
                reader.decorate_sample_generator(
                    decorated_reader, batch_size=4, places=fluid.cuda_places())
            else:
                reader.decorate_sample_generator(
                    decorated_reader, batch_size=4, places=fluid.cpu_places())

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

            if iterable:
                for _ in range(3):
                    num = 0
                    for data in reader():
                        exe.run(feed=data, fetch_list=[image_p_1])
                        num += 1
                    if not self.raise_exception:
                        self.assertEquals(num, 20)
                    else:
                        self.assertEquals(num, 0)
                        raise ValueError('Reader raises exception')
            else:
                for _ in range(3):
                    num = 0
                    reader.start()
                    try:
                        while True:
                            exe.run(fetch_list=[image_p_1])
                            num += 1
                    except fluid.core.EOFException:
                        reader.reset()
                        if not self.raise_exception:
                            self.assertEquals(num, 20)
                        else:
                            self.assertEquals(num, 0)
                            raise ValueError('Reader raises exception')

    def test_main(self):
        for p in self.places():
            for iterable in [False, True]:
                try:
                    with fluid.scope_guard(fluid.Scope()):
                        self.main_impl(p, iterable)

                    self.assertTrue(not self.raise_exception)
                except ValueError:
                    self.assertTrue(self.raise_exception)


class TestCase1(TestMultiprocessReaderException):
    def setUp(self):
        self.use_pipe = False
        self.raise_exception = True


class TestCase2(TestMultiprocessReaderException):
    def setUp(self):
        self.use_pipe = True
        self.raise_exception = False


class TestCase3(TestMultiprocessReaderException):
    def setUp(self):
        self.use_pipe = True
        self.raise_exception = True


if __name__ == '__main__':
    unittest.main()