test_recv_op.py 2.3 KB
Newer Older
T
typhoonzero 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserve.
#
# 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.v2.fluid as fluid
import paddle.v2.fluid.layers as layers
import numpy
T
typhoonzero 已提交
20 21
from multiprocessing import Process
import os, sys
22
import time
T
typhoonzero 已提交
23 24 25


class TestRecvOp(unittest.TestCase):
T
WIP  
typhoonzero 已提交
26
    def test_send(self):
T
typhoonzero 已提交
27
        # Run init_serv in a thread
T
WIP  
typhoonzero 已提交
28
        place = fluid.CPUPlace()
T
typhoonzero 已提交
29 30 31
        p = Process(target=self.init_serv, args=(place, ))
        p.daemon = True
        p.start()
T
typhoonzero 已提交
32
        time.sleep(1)
T
WIP  
typhoonzero 已提交
33
        self.init_client(place)
T
typhoonzero 已提交
34 35 36
        # FIXME(typhoonzero): find a way to gracefully shutdown the server.
        os.system("kill -9 %d" % p.pid)
        p.join()
T
typhoonzero 已提交
37 38 39 40

    def init_serv(self, place):
        main = fluid.Program()
        with fluid.program_guard(main):
T
typhoonzero 已提交
41 42 43 44 45 46 47
            x = layers.data(
                shape=[32, 32],
                dtype='float32',
                name="X",
                append_batch_size=False)
            fluid.initializer.Constant(value=1.0)(x, main.global_block())
            serv = layers.ListenAndServ("127.0.0.1:6174", optimizer_mode=False)
T
typhoonzero 已提交
48
            with serv.do():
T
typhoonzero 已提交
49 50 51
                o = layers.scale(x=x, scale=10.0)
            main.global_block().create_var(
                name=o.name, psersistable=False, dtype=o.dtype, shape=o.shape)
T
typhoonzero 已提交
52 53 54 55 56 57
        exe = fluid.Executor(place)
        exe.run(main)

    def init_client(self, place):
        main = fluid.Program()
        with fluid.program_guard(main):
T
typhoonzero 已提交
58 59 60 61 62 63
            x = layers.data(
                shape=[32, 32],
                dtype='float32',
                name='X',
                append_batch_size=False)
            fluid.initializer.Constant(value=1.0)(x, main.global_block())
T
typhoonzero 已提交
64 65 66
            layers.Send("127.0.0.1:6174", [x], [x])
        exe = fluid.Executor(place)
        exe.run(main)
T
WIP  
typhoonzero 已提交
67 68 69 70


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