test_fleet_rolemaker.py 4.7 KB
Newer Older
T
tangwei12 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#   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.
X
xujiaqi01 已提交
14
"""Test cloud role maker."""
T
tangwei12 已提交
15 16 17

import os
import unittest
18

T
tangwei12 已提交
19 20 21 22
import paddle.fluid.incubate.fleet.base.role_maker as role_maker


class TestCloudRoleMaker(unittest.TestCase):
X
xujiaqi01 已提交
23 24 25 26
    """
    Test cases for PaddleCloudRoleMaker.
    """

T
tangwei12 已提交
27
    def setUp(self):
X
xujiaqi01 已提交
28
        """Set up, set envs."""
T
tangwei12 已提交
29
        os.environ["PADDLE_TRAINERS_NUM"] = "2"
C
Chengmo 已提交
30
        os.environ[
31 32
            "PADDLE_PSERVERS_IP_PORT_LIST"
        ] = "127.0.0.1:36001,127.0.0.2:36001"
T
tangwei12 已提交
33 34

    def test_tr_rolemaker(self):
X
xujiaqi01 已提交
35
        """Test tr rolenamer."""
T
tangwei12 已提交
36 37 38 39 40 41 42 43 44 45
        os.environ["TRAINING_ROLE"] = "TRAINER"
        os.environ["PADDLE_TRAINER_ID"] = "0"

        ro = role_maker.PaddleCloudRoleMaker(is_collective=False)
        ro.generate_role()
        self.assertTrue(ro.is_worker())
        self.assertFalse(ro.is_server())
        self.assertEqual(ro.worker_num(), 2)

    def test_ps_rolemaker(self):
X
xujiaqi01 已提交
46
        """Test ps rolemaker."""
T
tangwei12 已提交
47 48
        os.environ["TRAINING_ROLE"] = "PSERVER"
        os.environ["POD_IP"] = "127.0.0.1"
C
Chengmo 已提交
49
        os.environ["PADDLE_PORT"] = "36001"
T
tangwei12 已提交
50 51 52 53 54 55
        ro = role_maker.PaddleCloudRoleMaker(is_collective=False)
        ro.generate_role()
        self.assertFalse(ro.is_worker())
        self.assertTrue(ro.is_server())
        self.assertEqual(ro.worker_num(), 2)

56
    def test_training_role(self):
X
xujiaqi01 已提交
57
        """Test training role."""
T
tangwei12 已提交
58 59 60 61
        os.environ["TRAINING_ROLE"] = "TEST"
        ro = role_maker.PaddleCloudRoleMaker(is_collective=False)
        self.assertRaises(ValueError, ro.generate_role)

X
xujiaqi01 已提交
62 63 64 65
    def test_pslib_1(self):
        """Test cases for pslib."""
        import paddle.fluid as fluid
        from paddle.fluid.incubate.fleet.base.role_maker import GeneralRoleMaker
66
        from paddle.fluid.incubate.fleet.parameter_server.pslib import fleet
1
123malin 已提交
67

X
xujiaqi01 已提交
68 69 70 71 72 73 74
        os.environ["POD_IP"] = "127.0.0.1"
        os.environ["PADDLE_PORT"] = "36001"
        os.environ["TRAINING_ROLE"] = "TRAINER"
        os.environ["PADDLE_TRAINER_ENDPOINTS"] = "127.0.0.1:36001"
        os.environ["PADDLE_PSERVERS_IP_PORT_LIST"] = "127.0.0.1:36002"
        os.environ["PADDLE_TRAINER_ID"] = "0"
        role_maker = GeneralRoleMaker()
75 76
        # print("init rolemaker")
        # role_maker.generate_role()
X
xujiaqi01 已提交
77 78
        place = fluid.CPUPlace()
        exe = fluid.Executor(place)
79
        # fleet.init(role_maker)
X
xujiaqi01 已提交
80 81 82 83
        train_program = fluid.Program()
        startup_program = fluid.Program()
        scope = fluid.Scope()
        with fluid.program_guard(train_program, startup_program):
84 85 86 87 88 89 90
            show = fluid.layers.data(
                name="show",
                shape=[-1, 1],
                dtype="float32",
                lod_level=1,
                append_batch_size=False,
            )
X
xujiaqi01 已提交
91
            fc = fluid.layers.fc(input=show, size=1, act=None)
92 93 94 95 96 97 98
            label = fluid.layers.data(
                name="click",
                shape=[-1, 1],
                dtype="int64",
                lod_level=1,
                append_batch_size=False,
            )
X
xujiaqi01 已提交
99 100 101 102 103 104 105 106 107 108
            label_cast = fluid.layers.cast(label, dtype='float32')
            cost = fluid.layers.log_loss(fc, label_cast)
        try:
            adam = fluid.optimizer.Adam(learning_rate=0.000005)
            adam = fleet.distributed_optimizer(adam)
            adam.minimize([cost], [scope])
            fleet.run_server()
        except:
            print("do not support pslib test, skip")
            return
X
xujiaqi01 已提交
109
        fleet.clear_one_table(0)
110 111 112 113
        from paddle.fluid.incubate.fleet.base.role_maker import (
            MPISymetricRoleMaker,
        )

X
xujiaqi01 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
        try:
            role = MPISymetricRoleMaker()
            role._all_reduce([1], [2])
        except:
            print("catch expected error of not inited")
        try:
            role = MPISymetricRoleMaker()
            role._all_reduce([1], [2], "min")
        except:
            print("catch expected error of not inited")
        try:
            role = MPISymetricRoleMaker()
            role._all_reduce([1], [2], "max")
        except:
            print("catch expected error of not inited")
        try:
            role = MPISymetricRoleMaker()
            role._all_reduce([1], [2], "unknown")
        except:
            print("catch expected error of unknown type")

T
tangwei12 已提交
135 136 137

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