test_imperative_group.py 7.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Copyright (c) 2020 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 unittest

import paddle
18
from paddle.fluid import core
姜永久 已提交
19
from paddle.fluid.framework import in_dygraph_mode
20 21 22


class TestDataParallelGroup(unittest.TestCase):
23
    def _create_var(self, dtype, shape):
24 25 26
        return paddle.rand(shape=shape, dtype=dtype)

    def assign_group_by_size(self, *args):
27 28
        if in_dygraph_mode():
            return core.eager_assign_group_by_size(*args)
29 30 31 32

    def test_construct_group0(self):
        # one dtype & one limit capability
        var_list = []
33 34 35 36
        var_list.append(self._create_var("float32", [2, 50]))
        var_list.append(self._create_var("float32", [2, 100]))
        var_list.append(self._create_var("float32", [2, 50]))
        var_list.append(self._create_var("float32", [2, 25]))
37 38 39
        res = self.assign_group_by_size(
            var_list, [False, False, False, False], [400]
        )
40 41 42 43 44
        self.assertEqual([[0], [1], [2], [3]], res)

    def test_construct_group1(self):
        # multi dtype & one limit capability
        var_list = []
45 46 47 48 49 50
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
51
        res = self.assign_group_by_size(
52 53
            var_list, [False, False, False, False, False, False], [400]
        )
54 55 56 57 58
        self.assertEqual([[0, 2], [1, 3], [4], [5]], res)

    def test_construct_group2(self):
        # one dtype & multi limit capability
        var_list = []
59 60 61 62
        var_list.append(self._create_var("float32", [2, 50]))
        var_list.append(self._create_var("float32", [2, 50]))
        var_list.append(self._create_var("float32", [2, 50]))
        var_list.append(self._create_var("float32", [2, 50]))
63 64 65
        res = self.assign_group_by_size(
            var_list, [False, False, False, False], [400, 800]
        )
66 67 68 69 70
        self.assertEqual([[0], [1, 2], [3]], res)

    def test_construct_group3(self):
        # multi dtype & multi limit capability
        var_list = []
71 72 73 74 75 76
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
77
        res = self.assign_group_by_size(
78 79
            var_list, [False, False, False, False, False, False], [200, 400]
        )
80 81 82 83 84
        self.assertEqual([[0], [1], [2, 4], [3, 5]], res)

    def test_construct_group4(self):
        # multi dtype & zero limit capability
        var_list = []
85 86 87 88 89 90
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
91
        res = self.assign_group_by_size(
92 93
            var_list, [False, False, False, False, False, False], [0]
        )
94 95 96 97 98
        self.assertEqual([[0], [1], [2], [3], [4], [5]], res)

    def test_construct_group5(self):
        # multi dtype & infinite capability
        var_list = []
99 100 101 102 103 104
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
105
        res = self.assign_group_by_size(
106 107
            var_list, [False, False, False, False, False, False], [10000]
        )
108 109 110 111 112
        self.assertEqual([[0, 2, 4], [1, 3, 5]], res)

    def test_construct_group6(self):
        # multi dtype & limit capability & multi tensor type
        var_list = []
113
        var_list.append(
114
            self._create_var(
115 116 117 118
                "float32",
                [1, 50],
            )
        )
119 120 121 122 123
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
124
        res = self.assign_group_by_size(
125 126
            var_list, [True, False, False, False, False, True], [400]
        )
127 128 129 130 131
        self.assertEqual([[0], [1, 3], [2, 4], [5]], res)

    def test_construct_group7(self):
        # multi dtype & multi limit capability & multi tensor type
        var_list = []
132 133 134 135 136 137
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
        var_list.append(self._create_var("float32", [1, 50]))
        var_list.append(self._create_var("float64", [1, 25]))
138
        res = self.assign_group_by_size(
139 140
            var_list, [True, False, False, False, False, True], [200, 400]
        )
141 142
        self.assertEqual([[0], [1], [2], [3], [4], [5]], res)

143 144 145
    def test_construct_group8(self):
        # one dtype & one limit capability & have tensor_indices
        var_list = []
146 147 148 149
        var_list.append(self._create_var("float32", [2, 25]))
        var_list.append(self._create_var("float32", [2, 100]))
        var_list.append(self._create_var("float32", [2, 50]))
        var_list.append(self._create_var("float32", [2, 25]))
150 151 152
        res = self.assign_group_by_size(
            var_list, [False, False, False, False], [400], [3, 0, 1, 2]
        )
153 154 155 156 157
        self.assertEqual([[3, 0], [1], [2]], res)

    def test_construct_group9(self):
        # one dtype & one limit capability & have tensor_indices
        var_list = []
158 159 160 161
        var_list.append(self._create_var("float32", [2, 25]))
        var_list.append(self._create_var("float32", [2, 25]))
        var_list.append(self._create_var("float32", [2, 25]))
        var_list.append(self._create_var("float32", [2, 1000]))
162 163 164
        res = self.assign_group_by_size(
            var_list, [False, False, False, True], [300], [1, 0, 2, 3]
        )
165 166
        self.assertEqual([[1, 0], [3], [2]], res)

167

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