test_reader_reset.py 3.4 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.

15
from __future__ import print_function
J
Jiabin Yang 已提交
16
import os
17

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


class TestReaderReset(unittest.TestCase):
27

F
fengjiayi 已提交
28
    def prepare_data(self):
29

F
fengjiayi 已提交
30
        def fake_data_generator():
31
            for n in range(self.total_ins_num):
F
fengjiayi 已提交
32 33
                yield np.ones(self.ins_shape) * n, n

34
        return fake_data_generator
F
fengjiayi 已提交
35 36 37 38 39

    def setUp(self):
        self.use_cuda = fluid.core.is_compiled_with_cuda()
        self.ins_shape = [3]
        self.batch_size = 5
40 41
        self.batch_num = 20
        self.total_ins_num = self.batch_size * self.batch_num
F
fengjiayi 已提交
42 43 44 45 46 47 48 49
        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):
50 51 52
            image = fluid.layers.data(name='image',
                                      shape=self.ins_shape,
                                      dtype='float32')
53 54 55 56 57 58
            label = fluid.layers.data(name='label', shape=[1], dtype='int64')
            data_reader_handle = fluid.io.PyReader(
                feed_list=[image, label],
                capacity=16,
                iterable=False,
                use_double_buffer=with_double_buffer)
F
fengjiayi 已提交
59 60 61 62 63 64
            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)

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

68 69
        train_cp = compiler.CompiledProgram(main_prog).with_data_parallel(
            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 77 78 79 80
                while True:
                    data_val, label_val = exe.run(train_cp,
                                                  fetch_list=fetch_list,
                                                  return_numpy=True)
                    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()