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.

15
from __future__ import print_function
J
Jiabin Yang 已提交
16
import os
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 50 51 52 53 54
            image = fluid.layers.data(
                name='image', shape=self.ins_shape, dtype='float32')
            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 已提交
55 56 57 58 59 60
            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)

61 62 63 64
        data_reader_handle.decorate_sample_list_generator(
            paddle.batch(
                self.prepare_data(), batch_size=self.batch_size))

65
        train_cp = compiler.CompiledProgram(main_prog).with_data_parallel()
66 67

        batch_id = 0
F
fengjiayi 已提交
68
        pass_count = 0
69 70
        while pass_count < self.test_pass_num:
            data_reader_handle.start()
F
fengjiayi 已提交
71
            try:
72 73 74 75 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]
                    broadcasted_label = np.ones((ins_num, ) + tuple(
                        self.ins_shape)) * label_val.reshape((ins_num, 1))
                    self.assertEqual(data_val.all(), broadcasted_label.all())
                    batch_id += 1
F
fengjiayi 已提交
81
            except fluid.core.EOFException:
82
                data_reader_handle.reset()
F
fengjiayi 已提交
83
                pass_count += 1
84 85 86
                self.assertEqual(pass_count * self.batch_num, batch_id)

        self.assertEqual(pass_count, self.test_pass_num)
F
fengjiayi 已提交
87 88 89 90 91 92 93 94

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


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