local_service_handler.py 11.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2020 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.

B
barriery 已提交
15
import os
16
import logging
B
barriery 已提交
17
import multiprocessing
Z
zhangjun 已提交
18 19
#from paddle_serving_server import OpMaker, OpSeqMaker
#from paddle_serving_server import Server as GpuServer
20
#from paddle_serving_server import Server as CpuServer
B
barriery 已提交
21
from . import util
22
#from paddle_serving_app.local_predict import LocalPredictor
23 24

_LOGGER = logging.getLogger(__name__)
B
barriery 已提交
25
_workdir_name_gen = util.NameGenerator("workdir_")
26 27


W
fix bug  
wangjiawei04 已提交
28
class LocalServiceHandler(object):
29 30 31 32 33 34 35
    """
    LocalServiceHandler is the processor of the local service, contains
    three client types, brpc, grpc and local_predictor.If you use the 
    brpc or grpc, serveing startup ability is provided.If you use
    local_predictor, local predict ability is provided by paddle_serving_app.
    """

36
    def __init__(self,
B
barriery 已提交
37
                 model_config,
W
wangjiawei04 已提交
38
                 client_type='local_predictor',
B
barriery 已提交
39
                 workdir="",
40
                 thread_num=2,
41
                 device_type=-1,
42
                 devices="",
43
                 fetch_names=None,
44 45
                 mem_optim=True,
                 ir_optim=False,
46
                 available_port_generator=None,
47 48
                 use_profile=False,
                 precision="fp32"):
49 50 51 52 53 54 55 56
        """
        Initialization of localservicehandler

        Args:
           model_config: model config path
           client_type: brpc, grpc and local_predictor[default]
           workdir: work directory
           thread_num: number of threads, concurrent quantity.
57 58
           device_type: support multiple devices. -1=Not set, determined by
               `devices`. 0=cpu, 1=gpu, 2=tensorRT, 3=arm cpu, 4=kunlun xpu
59 60 61 62 63 64 65
           devices: gpu id list[gpu], "" default[cpu]
           fetch_names: get fetch names out of LocalServiceHandler in 
               local_predictor mode. fetch_names_ is compatible for Client().
           mem_optim: use memory/graphics memory optimization, True default.
           ir_optim: use calculation chart optimization, False default.
           available_port_generator: generate available ports
           use_profile: use profiling, False default.
66
           precision: inference precesion, e.g. "fp32", "fp16", "int8"
67 68 69 70

        Returns:
           None
        """
71
        if available_port_generator is None:
B
barriery 已提交
72
            available_port_generator = util.GetAvailablePortGenerator()
73

B
barriery 已提交
74
        self._model_config = model_config
75
        self._port_list = []
76 77 78 79 80 81 82 83 84 85 86 87
        self._device_name = "cpu"
        self._use_gpu = False
        self._use_trt = False
        self._use_lite = False
        self._use_xpu = False

        if device_type == -1:
            # device_type is not set, determined by `devices`, 
            if devices == "":
                # CPU
                self._device_name = "cpu"
                devices = [-1]
Z
zhangjun 已提交
88
            else:
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
                # GPU
                self._device_name = "gpu"
                self._use_gpu = True
                devices = [int(x) for x in devices.split(",")]

        elif device_type == 0:
            # CPU
            self._device_name = "cpu"
            devices = [-1]
        elif device_type == 1:
            # GPU
            self._device_name = "gpu"
            self._use_gpu = True
            devices = [int(x) for x in devices.split(",")]
        elif device_type == 2:
            # Nvidia Tensor RT
            self._device_name = "gpu"
            self._use_gpu = True
107
            devices = [int(x) for x in devices.split(",")]
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
            self._use_trt = True
        elif device_type == 3:
            # ARM CPU
            self._device_name = "arm"
            devices = [-1]
            self._use_lite = True
        elif device_type == 4:
            # Kunlun XPU
            self._device_name = "arm"
            devices = [int(x) for x in devices.split(",")]
            self._use_lite = True
            self._use_xpu = True
        else:
            _LOGGER.error(
                "LocalServiceHandler initialization fail. device_type={}"
                .format(device_type))

        if client_type == "brpc" or client_type == "grpc":
126 127
            for _ in devices:
                self._port_list.append(available_port_generator.next())
128 129 130
            _LOGGER.info("Create ports for devices:{}. Port:{}"
                         .format(devices, self._port_list))

131
        self._client_type = client_type
132 133 134 135 136
        self._workdir = workdir
        self._devices = devices
        self._thread_num = thread_num
        self._mem_optim = mem_optim
        self._ir_optim = ir_optim
137
        self._local_predictor_client = None
138 139
        self._rpc_service_list = []
        self._server_pros = []
140
        self._use_profile = use_profile
141
        self._fetch_names = fetch_names
142
        self._precision = precision
143 144 145 146 147

        _LOGGER.info(
            "Models({}) will be launched by device {}. use_gpu:{}, "
            "use_trt:{}, use_lite:{}, use_xpu:{}, device_type:{}, devices:{}, "
            "mem_optim:{}, ir_optim:{}, use_profile:{}, thread_num:{}, "
148
            "client_type:{}, fetch_names:{} precision:{}".format(
149
                model_config, self._device_name, self._use_gpu, self._use_trt,
150 151 152
                self._use_lite, self._use_xpu, device_type, self._devices, self.
                _mem_optim, self._ir_optim, self._use_profile, self._thread_num,
                self._client_type, self._fetch_names, self._precision))
153 154

    def get_fetch_list(self):
155
        return self._fetch_names
156 157 158 159

    def get_port_list(self):
        return self._port_list

160
    def get_client(self, concurrency_idx):
161 162 163
        """
        Function get_client is only used for local predictor case, creates one
        LocalPredictor object, and initializes the paddle predictor by function
164
        load_model_config.The concurrency_idx is used to select running devices.  
165 166

        Args:
167
            concurrency_idx: process/thread index
168 169 170 171

        Returns:
            _local_predictor_client
        """
172 173 174 175 176 177 178 179

        #checking the legality of concurrency_idx.
        device_num = len(self._devices)
        if device_num <= 0:
            _LOGGER.error("device_num must be not greater than 0. devices({})".
                          format(self._devices))
            raise ValueError("The number of self._devices error")

T
TeslaZhao 已提交
180
        if concurrency_idx < 0:
181 182 183 184 185 186
            _LOGGER.error("concurrency_idx({}) must be one positive number".
                          format(concurrency_idx))
            concurrency_idx = 0
        elif concurrency_idx >= device_num:
            concurrency_idx = concurrency_idx % device_num

T
TeslaZhao 已提交
187 188
        _LOGGER.info("GET_CLIENT : concurrency_idx={}, device_num={}".format(
            concurrency_idx, device_num))
189 190 191
        from paddle_serving_app.local_predict import LocalPredictor
        if self._local_predictor_client is None:
            self._local_predictor_client = LocalPredictor()
192

193 194
            self._local_predictor_client.load_model_config(
                model_path=self._model_config,
195
                use_gpu=self._use_gpu,
196
                gpu_id=self._devices[concurrency_idx],
197 198 199 200
                use_profile=self._use_profile,
                thread_num=self._thread_num,
                mem_optim=self._mem_optim,
                ir_optim=self._ir_optim,
Z
zhangjun 已提交
201
                use_trt=self._use_trt,
202
                use_lite=self._use_lite,
203 204
                use_xpu=self._use_xpu,
                precision=self._precision)
205
        return self._local_predictor_client
W
wangjiawei04 已提交
206

B
barriery 已提交
207 208
    def get_client_config(self):
        return os.path.join(self._model_config, "serving_server_conf.prototxt")
209 210

    def _prepare_one_server(self, workdir, port, gpuid, thread_num, mem_optim,
211
                            ir_optim, precision):
212
        """
213
        According to self._device_name, generating one Cpu/Gpu/Arm Server, and
214 215 216 217 218 219 220 221 222
        setting the model config amd startup params.

        Args:
            workdir: work directory
            port: network port
            gpuid: gpu id
            thread_num: thread num
            mem_optim: use memory/graphics memory optimization
            ir_optim: use calculation chart optimization
223
            precision: inference precison, e.g."fp32", "fp16", "int8"
224 225 226 227

        Returns:
            server: CpuServer/GpuServer
        """
228
        if self._device_name == "cpu":
229 230 231 232 233 234 235 236 237 238 239 240 241
            from paddle_serving_server import OpMaker, OpSeqMaker, Server
            op_maker = OpMaker()
            read_op = op_maker.create('general_reader')
            general_infer_op = op_maker.create('general_infer')
            general_response_op = op_maker.create('general_response')

            op_seq_maker = OpSeqMaker()
            op_seq_maker.add_op(read_op)
            op_seq_maker.add_op(general_infer_op)
            op_seq_maker.add_op(general_response_op)

            server = Server()
        else:
Z
zhangjun 已提交
242
            #gpu or arm
Z
zhangjun 已提交
243
            from paddle_serving_server import OpMaker, OpSeqMaker, Server
244 245 246 247 248 249 250 251 252 253 254 255 256
            op_maker = OpMaker()
            read_op = op_maker.create('general_reader')
            general_infer_op = op_maker.create('general_infer')
            general_response_op = op_maker.create('general_response')

            op_seq_maker = OpSeqMaker()
            op_seq_maker.add_op(read_op)
            op_seq_maker.add_op(general_infer_op)
            op_seq_maker.add_op(general_response_op)

            server = Server()
            if gpuid >= 0:
                server.set_gpuid(gpuid)
Z
zhangjun 已提交
257
            # TODO: support arm or arm + xpu later
Z
fix bug  
zhangjun 已提交
258
            server.set_device(self._device_name)
259

260 261 262 263
        server.set_op_sequence(op_seq_maker.get_op_sequence())
        server.set_num_threads(thread_num)
        server.set_memory_optimize(mem_optim)
        server.set_ir_optimize(ir_optim)
264
        server.set_precision(precision)
265 266

        server.load_model_config(self._model_config)
267
        server.prepare_server(
268 269 270
            workdir=workdir, port=port, device=self._device_name)
        if self._fetch_names is None:
            self._fetch_names = server.get_fetch_list()
271 272 273
        return server

    def _start_one_server(self, service_idx):
274 275 276 277 278 279 280 281 282
        """
        Start one server
     
        Args:
            service_idx: server index
 
        Returns:
            None
        """
283 284 285
        self._rpc_service_list[service_idx].run_server()

    def prepare_server(self):
286 287 288
        """
        Prepare all servers to be started, and append them into list. 
        """
289
        for i, device_id in enumerate(self._devices):
B
barriery 已提交
290
            if self._workdir != "":
291 292 293 294 295 296 297 298 299 300
                workdir = "{}_{}".format(self._workdir, i)
            else:
                workdir = _workdir_name_gen.next()
            self._rpc_service_list.append(
                self._prepare_one_server(
                    workdir,
                    self._port_list[i],
                    device_id,
                    thread_num=self._thread_num,
                    mem_optim=self._mem_optim,
301 302
                    ir_optim=self._ir_optim,
                    precision=self._precision))
303 304

    def start_server(self):
305 306 307
        """
        Start multiple processes and start one server in each process
        """
308
        for i, _ in enumerate(self._rpc_service_list):
B
barriery 已提交
309 310 311
            p = multiprocessing.Process(
                target=self._start_one_server, args=(i, ))
            p.daemon = True
312 313 314
            self._server_pros.append(p)
        for p in self._server_pros:
            p.start()