serve.py 3.0 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
G
guru4elephant 已提交
21
from multiprocessing import Pool, Process
M
MRXLT 已提交
22 23 24 25 26 27 28 29 30


def parse_args():
    parser = argparse.ArgumentParser("serve")
    parser.add_argument(
        "--thread", type=int, default=10, help="Concurrency of server")
    parser.add_argument(
        "--model", type=str, default="", help="Model for serving")
    parser.add_argument(
G
guru4elephant 已提交
31
        "--port", type=int, default=9292, help="Port of the starting gpu")
M
MRXLT 已提交
32 33 34 35 36 37
    parser.add_argument(
        "--workdir",
        type=str,
        default="workdir",
        help="Working dir of current service")
    parser.add_argument(
M
MRXLT 已提交
38
        "--device", type=str, default="gpu", help="Type of device")
G
guru4elephant 已提交
39
    parser.add_argument(
G
guru4elephant 已提交
40
        "--gpu_ids", type=str, default="", help="gpu ids")
M
MRXLT 已提交
41 42
    return parser.parse_args()

G
guru4elephant 已提交
43
args = parse_args()
M
MRXLT 已提交
44

G
guru4elephant 已提交
45
def start_gpu_card_model(gpuid):
G
guru4elephant 已提交
46
    gpuid = int(gpuid)
G
guru4elephant 已提交
47 48 49 50
    device = "gpu"
    port = args.port
    if gpuid == -1:
        device = "cpu"
G
guru4elephant 已提交
51
    elif gpuid >= 0:
G
guru4elephant 已提交
52
        port = args.port + gpuid
M
MRXLT 已提交
53 54
    thread_num = args.thread
    model = args.model
G
guru4elephant 已提交
55
    workdir = "{}_{}".format(args.workdir, gpuid)
M
MRXLT 已提交
56 57 58 59 60 61 62 63 64 65

    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')
G
guru4elephant 已提交
66
    
M
MRXLT 已提交
67 68 69 70 71 72 73 74 75 76 77
    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)

    server = serving.Server()
    server.set_op_sequence(op_seq_maker.get_op_sequence())
    server.set_num_threads(thread_num)

    server.load_model_config(model)
    server.prepare_server(workdir=workdir, port=port, device=device)
G
guru4elephant 已提交
78 79
    if gpuid >= 0:
        server.set_gpuid(gpuid)
M
MRXLT 已提交
80 81 82
    server.run_server()

if __name__ == "__main__":
G
guru4elephant 已提交
83 84 85 86 87
    gpus = args.gpu_ids.split(",")
    if len(gpus) <= 0:
        start_gpu_card_model(-1)
    else:
        gpu_processes = []
G
guru4elephant 已提交
88 89
        for i, gpu_id in enumerate(gpus):
            p = Process(target=start_gpu_card_model, args=(i,))
G
guru4elephant 已提交
90 91 92 93 94 95
            gpu_processes.append(p)
        for p in gpu_processes:
            p.start()
        for p in gpu_processes:
            p.join()