test_recv_op.py 2.4 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
T
typhoonzero 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#
# 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

17 18
import paddle.fluid as fluid
import paddle.fluid.layers as layers
T
typhoonzero 已提交
19
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):
Q
qiaolongfei 已提交
26
    def no_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
        # FIXME(typhoonzero): find a way to gracefully shutdown the server.
Y
update  
Yancey1989 已提交
35
        os.system("kill -9 %d" % p.pid)
T
typhoonzero 已提交
36
        p.join()
T
typhoonzero 已提交
37 38 39 40

    def init_serv(self, place):
        main = fluid.Program()
        with fluid.program_guard(main):
Y
Yancey1989 已提交
41 42
            serv = layers.ListenAndServ(
                "127.0.0.1:6174", ["X"], optimizer_mode=False)
T
typhoonzero 已提交
43
            with serv.do():
Y
Yancey1989 已提交
44 45 46 47 48 49
                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 已提交
50 51 52
                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 已提交
53 54 55 56 57 58
        exe = fluid.Executor(place)
        exe.run(main)

    def init_client(self, place):
        main = fluid.Program()
        with fluid.program_guard(main):
T
typhoonzero 已提交
59 60 61 62 63 64
            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 已提交
65 66 67
            layers.Send("127.0.0.1:6174", [x], [x])
        exe = fluid.Executor(place)
        exe.run(main)
T
WIP  
typhoonzero 已提交
68 69 70 71


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