serve.py 4.6 KB
Newer Older
M
MRXLT 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# 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.
"""
Usage:
    Host a trained paddle model with one line command
    Example:
        python -m paddle_serving_server.serve --model ./serving_server_model --port 9292
"""
import argparse
D
Dong Daxiang 已提交
21
import os
G
guru4elephant 已提交
22
from multiprocessing import Pool, Process
23
from paddle_serving_server_gpu import serve_args
M
MRXLT 已提交
24
from flask import Flask, request
M
MRXLT 已提交
25 26


M
MRXLT 已提交
27
def start_gpu_card_model(index, gpuid, args):  # pylint: disable=doc-string-missing
G
guru4elephant 已提交
28
    gpuid = int(gpuid)
G
guru4elephant 已提交
29 30 31 32
    device = "gpu"
    port = args.port
    if gpuid == -1:
        device = "cpu"
G
guru4elephant 已提交
33
    elif gpuid >= 0:
M
MRXLT 已提交
34
        port = args.port + index
M
MRXLT 已提交
35 36
    thread_num = args.thread
    model = args.model
M
MRXLT 已提交
37
    mem_optim = args.mem_optim
M
MRXLT 已提交
38
    ir_optim = args.ir_optim
M
MRXLT 已提交
39
    max_body_size = args.max_body_size
B
barrierye 已提交
40
    use_multilang = args.use_multilang
G
guru4elephant 已提交
41
    workdir = "{}_{}".format(args.workdir, gpuid)
M
MRXLT 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

    if model == "":
        print("You must specify your serving model")
        exit(-1)

    import paddle_serving_server_gpu as serving
    op_maker = serving.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 = serving.OpSeqMaker()
    op_seq_maker.add_op(read_op)
    op_seq_maker.add_op(general_infer_op)
    op_seq_maker.add_op(general_response_op)

B
barrierye 已提交
58 59 60 61
    if use_multilang:
        server = serving.MultiLangServer()
    else:
        server = serving.Server()
M
MRXLT 已提交
62 63
    server.set_op_sequence(op_seq_maker.get_op_sequence())
    server.set_num_threads(thread_num)
M
MRXLT 已提交
64
    server.set_memory_optimize(mem_optim)
M
MRXLT 已提交
65
    server.set_ir_optimize(ir_optim)
M
MRXLT 已提交
66
    server.set_max_body_size(max_body_size)
M
MRXLT 已提交
67 68 69

    server.load_model_config(model)
    server.prepare_server(workdir=workdir, port=port, device=device)
G
guru4elephant 已提交
70 71
    if gpuid >= 0:
        server.set_gpuid(gpuid)
M
MRXLT 已提交
72 73 74
    server.run_server()


B
barrierye 已提交
75
def start_multi_card(args):  # pylint: disable=doc-string-missing
76 77
    gpus = ""
    if args.gpu_ids == "":
M
MRXLT 已提交
78
        gpus = []
79 80
    else:
        gpus = args.gpu_ids.split(",")
M
MRXLT 已提交
81 82
        if "CUDA_VISIBLE_DEVICES" in os.environ:
            env_gpus = os.environ["CUDA_VISIBLE_DEVICES"].split(",")
M
MRXLT 已提交
83 84 85 86 87 88
            for ids in gpus:
                if int(ids) >= len(env_gpus):
                    print(
                        " Max index of gpu_ids out of range, the number of CUDA_VISIBLE_DEVICES is {}.".
                        format(len(env_gpus)))
                    exit(-1)
M
MRXLT 已提交
89 90
        else:
            env_gpus = []
G
guru4elephant 已提交
91
    if len(gpus) <= 0:
M
MRXLT 已提交
92 93
        print("gpu_ids not set, going to run cpu service.")
        start_gpu_card_model(-1, -1, args)
G
guru4elephant 已提交
94 95
    else:
        gpu_processes = []
G
guru4elephant 已提交
96
        for i, gpu_id in enumerate(gpus):
B
barrierye 已提交
97 98 99
            p = Process(
                target=start_gpu_card_model, args=(
                    i,
M
MRXLT 已提交
100
                    gpu_id,
B
barrierye 已提交
101
                    args, ))
G
guru4elephant 已提交
102 103 104 105 106
            gpu_processes.append(p)
        for p in gpu_processes:
            p.start()
        for p in gpu_processes:
            p.join()
B
barrierye 已提交
107 108


M
MRXLT 已提交
109
if __name__ == "__main__":
110
    args = serve_args()
111 112 113
    if args.name == "None":
        start_multi_card(args)
    else:
Y
Your Name 已提交
114
        from .web_service import WebService
115 116
        web_service = WebService(name=args.name)
        web_service.load_model_config(args.model)
Y
Your Name 已提交
117 118
        gpu_ids = args.gpu_ids
        if gpu_ids == "":
119 120 121
            if "CUDA_VISIBLE_DEVICES" in os.environ:
                gpu_ids = os.environ["CUDA_VISIBLE_DEVICES"]
        if len(gpu_ids) > 0:
Y
Your Name 已提交
122
            web_service.set_gpus(gpu_ids)
123 124
        web_service.prepare_server(
            workdir=args.workdir, port=args.port, device=args.device)
M
MRXLT 已提交
125
        web_service.run_rpc_service()
M
MRXLT 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142

        app_instance = Flask(__name__)

        @app_instance.before_first_request
        def init():
            web_service._launch_web_service()

        service_name = "/" + web_service.name + "/prediction"

        @app_instance.route(service_name, methods=["POST"])
        def run():
            return web_service.get_prediction(request)

        app_instance.run(host="0.0.0.0",
                         port=web_service.port,
                         threaded=False,
                         processes=4)