test_hsigmoid_remote_table_op.py 10.4 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 23 24 25 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
#   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.

from __future__ import print_function

import os
import signal
import time
import unittest
from multiprocessing import Process

import numpy as np
import paddle.fluid as fluid
import paddle.fluid.core as core
from paddle.fluid.op import Operator
from paddle.fluid.framework import Program, program_guard


def run_pserver(pserver_id, use_cuda, sync_mode):
    scope = fluid.core.Scope()
    program = Program()
    with fluid.scope_guard(scope):
        with program_guard(program, startup_program=Program()):
            # create table parameter in scope
            place = fluid.CUDAPlace(0) if use_cuda else fluid.CPUPlace()
            # create and initialize Param Variable
            param = scope.var('table').get_tensor()

            param_array = np.ones((5, 8)).astype("float32")
            for i in range(len(param_array)):
                param_array[i] *= param_array[i] * i + pserver_id * 10 + 1
            param.set(param_array, place)

            optimize_block = program._create_block(program.global_block().idx)
            program.global_block().append_op(
                type="listen_and_serv",
                inputs={'X': []},
                outputs={},
                attrs={
                    "optimize_blocks": [optimize_block],
                    "endpoint": '127.0.0.1:0',
                    "Fanin": 1,
                    "sync_mode": True,
                    "grad_to_block_id": []
                })

            exe = fluid.Executor(place)
            exe.run(program)


class TestListenAndServOp(unittest.TestCase):
    def setUp(self):
        self.ps_timeout = 5

    def _start_pserver(self, pserver_id, use_cuda, sync_mode, pserver_func):
        p = Process(target=pserver_func, args=(pserver_id, use_cuda, sync_mode))
        p.daemon = True
        p.start()
        return p

    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

    def _get_pserver_port(self, pid):
        with open("/tmp/paddle.%d.port" % pid, 'r') as f:
            port = int(f.read().strip())
        return port

    def _run_hsigmoid_op_one_pserver(self, place, port):
        scope = fluid.core.Scope()
        program = Program()
        with fluid.scope_guard(scope):
            with program_guard(program, startup_program=Program()):
                x = scope.var('X').get_tensor()
                x_array = np.random.random((4, 8)).astype("float32") * 2
                x.set(x_array, place)
                # create and initialize Param Variable
                param = scope.var('W').get_tensor()
                param_array = np.zeros((5, 8)).astype("float32") * 2
                param.set(param_array, place)

                path_table = scope.var('PathTable').get_tensor()
                path_table_array = np.array(
                    [(0, 2, -1, -1, -1), (0, 1, 2, -1, -1), (0, 1, 4, -1, -1),
                     (0, 2, -1, -1, -1)]).astype(
                         "int64"
                     )  #np.array to store 1,2,5,6s' non-leaf path(root -> leaf)
                path_table.set(path_table_array, place)

                path_code = scope.var('PathCode').get_tensor()
                path_code_array = np.array(
                    [(0, 0, -1, -1, -1), (1, 1, 1, -1, -1), (1, 0, 0, -1, -1),
                     (0, 1, -1, -1, -1)]).astype("int64")  #np.array to store 
                path_code.set(path_code_array, place)

                label = scope.var('Label').get_tensor()
                label_array = np.array([0, 1, 4, 5])
                label.set(label_array, place)

                bias = scope.var('Bias').get_tensor()
                bias_array = np.random.random((5, 1)).astype("float32")
                bias.set(bias_array, place)

                out = scope.var('Out').get_tensor()

                pre_out = scope.var('PreOut').get_tensor

                w_out = scope.var('W_Out').get_tensor()
                w_out.set(param_array, place)

                emaps = ['127.0.0.1:' + str(port)]
                table_names = ['table']
                height_sections = [2]

                # create and run sgd operator
                hsigmoid_op = Operator(
                    "hierarchical_sigmoid",
                    X='X',
                    W='W',
                    PathTable='PathTable',
                    PathCode='PathCode',
                    Label='Label',
                    Bias='Bias',
                    Out='Out',
                    PreOut='PreOut',
                    W_Out='W_Out',
                    remote_prefetch=True,
                    epmap=emaps,
                    table_names=table_names,
                    height_sections=height_sections)

                hsigmoid_op.run(scope, place)

                # get and compare result
                result_array = np.array(w_out)
                self.assertEqual(list(result_array.shape), [5, 8])
                correct = None
                for i in range(5):
                    if i != 3:
                        correct = np.full((1, 8), i + 1).astype("float32")
                        self.assertTrue((result_array[i] == correct).all())
                    else:
                        correct = np.full((1, 8), 0).astype("float32")
                        self.assertTrue((result_array[i] == correct).all())

    def _run_hsigmoid_op_two_pserver(self, place, port0, port1):
        scope = fluid.core.Scope()
        program = Program()
        with fluid.scope_guard(scope):
            with program_guard(program, startup_program=Program()):
                x = scope.var('X').get_tensor()
                x_array = np.random.random((4, 8)).astype("float32") * 2
                x.set(x_array, place)
                # create and initialize Param Variable
                param = scope.var('W').get_tensor()
                param_array = np.zeros((5, 8)).astype("float32") * 2
                param.set(param_array, place)

                path_table = scope.var('PathTable').get_tensor()
                path_table_array = np.array(
                    [(0, 2, -1, -1, -1), (0, 1, 3, -1, -1), (0, 1, 4, -1, -1),
                     (0, 2, -1, -1, -1)]).astype(
                         "int64"
                     )  #np.array to store 1,2,5,6s' non-leaf path(root -> leaf)
                path_table.set(path_table_array, place)

                path_code = scope.var('PathCode').get_tensor()
                path_code_array = np.array(
                    [(0, 0, -1, -1, -1), (1, 1, 1, -1, -1), (1, 0, 0, -1, -1),
                     (0, 1, -1, -1, -1)]).astype("int64")  #np.array to store 
                path_code.set(path_code_array, place)

                label = scope.var('Label').get_tensor()
                label_array = np.array([0, 1, 4, 5])
                label.set(label_array, place)

                bias = scope.var('Bias').get_tensor()
                bias_array = np.random.random((5, 1)).astype("float32")
                bias.set(bias_array, place)

                out = scope.var('Out').get_tensor()

                pre_out = scope.var('PreOut').get_tensor

                w_out = scope.var('W_Out').get_tensor()
                w_out.set(param_array, place)

                emaps = ['127.0.0.1:' + str(port0), '127.0.0.1:' + str(port1)]
                table_names = ['table', 'table']
                height_sections = [2, 3]

                # create and run sgd operator
                hsigmoid_op = Operator(
                    "hierarchical_sigmoid",
                    X='X',
                    W='W',
                    PathTable='PathTable',
                    PathCode='PathCode',
                    Label='Label',
                    Bias='Bias',
                    Out='Out',
                    PreOut='PreOut',
                    W_Out='W_Out',
                    remote_prefetch=True,
                    epmap=emaps,
                    table_names=table_names,
                    height_sections=height_sections)
                hsigmoid_op.run(scope, place)

                # get and compare result
                result_array = np.array(w_out)
                self.assertEqual(list(result_array.shape), [5, 8])
                correct = None
                for i in range(5):
                    if i < 2:
                        correct = np.full((1, 8), i + 1).astype("float32")
                        self.assertTrue((result_array[i] == correct).all())
                    else:
                        correct = np.full((1, 8), i + 9).astype("float32")
                        self.assertTrue((result_array[i] == correct).all())

    def test_hsigmoid_op_remote(self):
        os.environ['PADDLE_ENABLE_REMOTE_PREFETCH'] = "1"
        # run pserver on CPU in sync mode
        p0 = self._start_pserver(0, False, True, run_pserver)
        self._wait_ps_ready(p0.pid)
        port0 = self._get_pserver_port(p0.pid)

        p1 = self._start_pserver(1, False, True, run_pserver)
        self._wait_ps_ready(p1.pid)
        port1 = self._get_pserver_port(p1.pid)

        places = [core.CPUPlace()]
        if core.is_compiled_with_cuda():
            places.append(core.CUDAPlace(0))

        for place in places:
            self._run_hsigmoid_op_one_pserver(place, port0)
            self._run_hsigmoid_op_two_pserver(place, port0, port1)

        # raise SIGTERM to pserver
        os.kill(p0.pid, signal.SIGINT)
        p0.join()
        os.kill(p1.pid, signal.SIGINT)
        p1.join()


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