cluster_test.py 4.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#   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.

import unittest

import parl
from parl.remote.master import Master
from parl.remote.worker import Worker
import time
import threading
from parl.remote.client import disconnect
B
Bo Zhou 已提交
23 24 25
from parl.remote import exceptions
import timeout_decorator
import subprocess
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60


@parl.remote_class
class Actor(object):
    def __init__(self, arg1=None, arg2=None):
        self.arg1 = arg1
        self.arg2 = arg2

    def get_arg1(self):
        return self.arg1

    def get_arg2(self):
        return self.arg2

    def set_arg1(self, value):
        self.arg1 = value

    def set_arg2(self, value):
        self.arg2 = value

    def get_unable_serialize_object(self):
        return UnableSerializeObject()

    def add_one(self, value):
        value += 1
        return value

    def add(self, x, y):
        time.sleep(3)
        return x + y

    def will_raise_exception_func(self):
        x = 1 / 0


B
Bo Zhou 已提交
61 62 63 64 65
class TestCluster(unittest.TestCase):
    def tearDown(self):
        disconnect()

    def test_actor_exception(self):
66 67 68
        master = Master(port=1235)
        th = threading.Thread(target=master.run)
        th.start()
69
        time.sleep(3)
B
Bo Zhou 已提交
70
        worker1 = Worker('localhost:1235', 1)
71 72 73 74
        for _ in range(3):
            if master.cpu_num == 1:
                break
            time.sleep(10)
B
Bo Zhou 已提交
75
        self.assertEqual(1, master.cpu_num)
76
        parl.connect('localhost:1235')
77

B
Bo Zhou 已提交
78 79 80 81
        with self.assertRaises(exceptions.RemoteError):
            actor = Actor(abcd='a bug')

        actor2 = Actor()
82 83 84 85
        for _ in range(3):
            if master.cpu_num == 0:
                break
            time.sleep(10)
B
Bo Zhou 已提交
86 87 88 89 90 91
        self.assertEqual(actor2.add_one(1), 2)
        self.assertEqual(0, master.cpu_num)

        master.exit()
        worker1.exit()

F
fuyw 已提交
92
    @timeout_decorator.timeout(seconds=800)
B
Bo Zhou 已提交
93 94 95 96
    def test_actor_exception(self):
        master = Master(port=1236)
        th = threading.Thread(target=master.run)
        th.start()
97
        time.sleep(3)
B
Bo Zhou 已提交
98 99 100 101 102 103 104 105 106
        worker1 = Worker('localhost:1236', 1)
        self.assertEqual(1, master.cpu_num)
        parl.connect('localhost:1236')
        actor = Actor()
        try:
            actor.will_raise_exception_func()
        except:
            pass
        actor2 = Actor()
107 108 109 110
        for _ in range(5):
            if master.cpu_num == 0:
                break
            time.sleep(10)
B
Bo Zhou 已提交
111 112 113 114 115 116 117 118 119 120 121 122
        self.assertEqual(actor2.add_one(1), 2)
        self.assertEqual(0, master.cpu_num)
        del actor
        del actor2
        worker1.exit()
        master.exit()

    def test_reset_actor(self):
        # start the master
        master = Master(port=1237)
        th = threading.Thread(target=master.run)
        th.start()
123
        time.sleep(3)
B
Bo Zhou 已提交
124 125 126

        worker1 = Worker('localhost:1237', 4)
        parl.connect('localhost:1237')
127
        for _ in range(10):
128 129 130
            actor = Actor()
            ret = actor.add_one(1)
            self.assertEqual(ret, 2)
B
Bo Zhou 已提交
131
        del actor
132 133 134 135 136 137

        for _ in range(10):
            if master.cpu_num == 4:
                break
            time.sleep(10)

B
Bo Zhou 已提交
138
        self.assertEqual(master.cpu_num, 4)
139 140 141 142 143 144 145 146
        worker1.exit()
        master.exit()

    def test_add_worker(self):
        master = Master(port=1234)
        th = threading.Thread(target=master.run)
        th.start()
        time.sleep(1)
147

148
        worker1 = Worker('localhost:1234', 4)
149 150 151 152
        for _ in range(3):
            if master.cpu_num == 4:
                break
            time.sleep(10)
153
        self.assertEqual(master.cpu_num, 4)
154

155
        worker2 = Worker('localhost:1234', 4)
156 157 158 159
        for _ in range(3):
            if master.cpu_num == 8:
                break
            time.sleep(10)
160 161 162
        self.assertEqual(master.cpu_num, 8)

        worker2.exit()
163 164 165 166 167

        for _ in range(10):
            if master.cpu_num == 4:
                break
            time.sleep(10)
168 169 170
        self.assertEqual(master.cpu_num, 4)

        master.exit()
B
Bo Zhou 已提交
171
        worker1.exit()
172 173 174 175


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