test_dist_train.py 5.1 KB
Newer Older
T
typhoonzero 已提交
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
import os
16
import signal
17
import time
T
typhoonzero 已提交
18
import unittest
19 20
from multiprocessing import Process

21
import numpy as np
22
from dist_test_utils import remove_ps_flag
T
typhoonzero 已提交
23

24
import paddle
T
typhoonzero 已提交
25
import paddle.fluid as fluid
S
sneaxiy 已提交
26
import paddle.fluid.layers.ops as ops
G
gongweibao 已提交
27
from paddle.fluid import core
28
from paddle.fluid.layers.io import ListenAndServ, Recv, Send
G
gongweibao 已提交
29

30 31 32
RPC_OP_ROLE_ATTR_NAME = (
    op_role_attr_name
) = core.op_proto_and_checker_maker.kOpRoleAttrName()
G
gongweibao 已提交
33 34
RPC_OP_ROLE_ATTR_VALUE = core.op_proto_and_checker_maker.OpRole.RPC

T
typhoonzero 已提交
35 36 37

class TestSendOp(unittest.TestCase):
    def test_send(self):
38
        remove_ps_flag(os.getpid())
T
typhoonzero 已提交
39 40 41
        # Run init_serv in a thread
        place = fluid.CPUPlace()
        # NOTE: python thread will not work here due to GIL.
42
        p = Process(target=self.init_serv, args=(place,))
T
typhoonzero 已提交
43 44 45
        p.daemon = True
        p.start()

Y
yi.wu 已提交
46 47 48
        self.ps_timeout = 5
        self._wait_ps_ready(p.pid)

Y
yi.wu 已提交
49
        with open("/tmp/paddle.%d.port" % p.pid, "r") as fn:
T
typhoonzero 已提交
50 51 52 53
            selected_port = int(fn.readlines()[0])
        self.init_client(place, selected_port)

        self.run_local(place)
54
        np.testing.assert_allclose(self.local_out, self.dist_out, rtol=1e-05)
T
typhoonzero 已提交
55

56
        os.kill(p.pid, signal.SIGINT)
T
update  
typhoonzero 已提交
57 58
        p.join()

Y
yi.wu 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72
    def _wait_ps_ready(self, pid):
        start_left_time = self.ps_timeout
        sleep_time = 0.5
        while True:
            assert start_left_time >= 0, "wait ps ready failed"
            time.sleep(sleep_time)
            try:
                # the listen_and_serv_op would touch a file which contains the listen port
                # on the /tmp directory until it was ready to process all the RPC call.
                os.stat("/tmp/paddle.%d.port" % pid)
                return
            except os.error:
                start_left_time -= sleep_time

T
typhoonzero 已提交
73 74 75 76
    def init_serv(self, place):
        main = fluid.Program()

        with fluid.program_guard(main):
X
Xin Pan 已提交
77
            serv = ListenAndServ("127.0.0.1:0", ["X"], optimizer_mode=False)
T
typhoonzero 已提交
78
            with serv.do():
79 80 81 82 83 84
                out_var = main.global_block().create_var(
                    name="scale_0.tmp_0",
                    psersistable=True,
                    dtype="float32",
                    shape=[32, 32],
                )
G
GGBond8488 已提交
85
                x = paddle.static.data(
86 87 88 89
                    shape=[32, 32],
                    dtype='float32',
                    name="X",
                )
T
typhoonzero 已提交
90
                fluid.initializer.Constant(value=1.0)(x, main.global_block())
S
sneaxiy 已提交
91
                ops._scale(x=x, scale=10.0, out=out_var)
T
typhoonzero 已提交
92 93 94 95 96 97 98

        self.server_exe = fluid.Executor(place)
        self.server_exe.run(main)

    def init_client(self, place, port):
        main = fluid.Program()
        with fluid.program_guard(main):
99 100 101 102 103 104 105 106 107 108
            main.global_block().append_op(
                type="fetch_barrier",
                inputs={},
                outputs={"Out": []},
                attrs={
                    "endpoints": ["127.0.0.1:{0}".format(port)],
                    RPC_OP_ROLE_ATTR_NAME: RPC_OP_ROLE_ATTR_VALUE,
                },
            )

G
GGBond8488 已提交
109
            x = paddle.static.data(shape=[32, 32], dtype='float32', name='X')
Z
Zeng Jinle 已提交
110
            x.persistable = True
T
typhoonzero 已提交
111
            fluid.initializer.Constant(value=2.3)(x, main.global_block())
G
gongweibao 已提交
112

T
typhoonzero 已提交
113 114 115 116
            get_var = main.global_block().create_var(
                name="scale_0.tmp_0",  # server side var
                dtype="float32",
                persistable=False,
117 118
                shape=[32, 32],
            )
Y
yi.wu 已提交
119
            fluid.initializer.Constant(value=2.3)(get_var, main.global_block())
G
gongweibao 已提交
120

121 122
            # NOTE(zjl): `Send` is async send, which means that the sent
            # variable would be needed even though `Send` op runs.
Z
Zeng Jinle 已提交
123
            # Is it a right design? If I do not set `x.persistable = True`,
124
            # this unittest would hang in rpc client after x is deleted.
Z
Zeng Jinle 已提交
125
            #
126 127
            # BTW, `Send` is not a public API to users. So I set
            # `x.persistable = True` to be a hot fix of this unittest.
X
Xin Pan 已提交
128 129
            Send("127.0.0.1:%d" % port, [x])
            o = Recv("127.0.0.1:%d" % port, [get_var])
Y
yi.wu 已提交
130

T
typhoonzero 已提交
131 132 133 134 135 136
        exe = fluid.Executor(place)
        self.dist_out = exe.run(main, fetch_list=o)  # o is a list

    def run_local(self, place):
        main = fluid.Program()
        with fluid.program_guard(main):
G
GGBond8488 已提交
137
            x = paddle.static.data(shape=[32, 32], dtype='float32', name='X')
T
typhoonzero 已提交
138
            fluid.initializer.Constant(value=2.3)(x, main.global_block())
2
201716010711 已提交
139
            o = paddle.scale(x=x, scale=10.0)
T
typhoonzero 已提交
140 141 142 143 144 145
        exe = fluid.Executor(place)
        self.local_out = exe.run(main, fetch_list=[o])


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