test_reader_reset.py 3.3 KB
Newer Older
F
fengjiayi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2018 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.

J
Jiabin Yang 已提交
15
import os
16

17
os.environ['CPU_NUM'] = str(1)
F
fengjiayi 已提交
18
import paddle.fluid as fluid
19
from paddle.fluid import compiler
20
import paddle
F
fengjiayi 已提交
21 22 23 24 25 26 27
import numpy as np
import unittest


class TestReaderReset(unittest.TestCase):
    def prepare_data(self):
        def fake_data_generator():
28
            for n in range(self.total_ins_num):
F
fengjiayi 已提交
29 30
                yield np.ones(self.ins_shape) * n, n

31
        return fake_data_generator
F
fengjiayi 已提交
32 33 34 35 36

    def setUp(self):
        self.use_cuda = fluid.core.is_compiled_with_cuda()
        self.ins_shape = [3]
        self.batch_size = 5
37 38
        self.batch_num = 20
        self.total_ins_num = self.batch_size * self.batch_num
F
fengjiayi 已提交
39 40 41 42 43 44 45 46
        self.test_pass_num = 100
        self.prepare_data()

    def main(self, with_double_buffer):
        main_prog = fluid.Program()
        startup_prog = fluid.Program()

        with fluid.program_guard(main_prog, startup_prog):
47 48 49
            image = fluid.layers.data(
                name='image', shape=self.ins_shape, dtype='float32'
            )
50 51 52 53 54
            label = fluid.layers.data(name='label', shape=[1], dtype='int64')
            data_reader_handle = fluid.io.PyReader(
                feed_list=[image, label],
                capacity=16,
                iterable=False,
55 56
                use_double_buffer=with_double_buffer,
            )
F
fengjiayi 已提交
57 58 59 60 61 62
            fetch_list = [image.name, label.name]

        place = fluid.CUDAPlace(0) if self.use_cuda else fluid.CPUPlace()
        exe = fluid.Executor(place)
        exe.run(startup_prog)

63
        data_reader_handle.decorate_sample_list_generator(
64 65
            paddle.batch(self.prepare_data(), batch_size=self.batch_size)
        )
66

67
        train_cp = compiler.CompiledProgram(main_prog).with_data_parallel(
68 69
            places=[place]
        )
70 71

        batch_id = 0
F
fengjiayi 已提交
72
        pass_count = 0
73 74
        while pass_count < self.test_pass_num:
            data_reader_handle.start()
F
fengjiayi 已提交
75
            try:
76
                while True:
77 78 79
                    data_val, label_val = exe.run(
                        train_cp, fetch_list=fetch_list, return_numpy=True
                    )
80
                    ins_num = data_val.shape[0]
81 82 83
                    broadcasted_label = np.ones(
                        (ins_num,) + tuple(self.ins_shape)
                    ) * label_val.reshape((ins_num, 1))
84 85
                    self.assertEqual(data_val.all(), broadcasted_label.all())
                    batch_id += 1
F
fengjiayi 已提交
86
            except fluid.core.EOFException:
87
                data_reader_handle.reset()
F
fengjiayi 已提交
88
                pass_count += 1
89 90 91
                self.assertEqual(pass_count * self.batch_num, batch_id)

        self.assertEqual(pass_count, self.test_pass_num)
F
fengjiayi 已提交
92 93 94 95 96 97 98 99

    def test_all(self):
        self.main(with_double_buffer=False)
        self.main(with_double_buffer=True)


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