profiler.py 8.3 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.
# pylint: disable=doc-string-missing
D
dongdaxiang 已提交
15

16 17
import os
import sys
B
barrierye 已提交
18
import logging
19 20 21 22 23 24
if sys.version_info.major == 2:
    import Queue
elif sys.version_info.major == 3:
    import queue as Queue
else:
    raise Exception("Error Python version")
B
barriery 已提交
25
from time import time as _time
B
barriery 已提交
26
import time
B
barrierye 已提交
27
import threading
B
barriery 已提交
28
import multiprocessing
29

30 31
_LOGGER = logging.getLogger(__name__)
_LOGGER.propagate = False
B
barrierye 已提交
32

D
dongdaxiang 已提交
33

B
barriery 已提交
34
class PerformanceTracer(object):
B
barriery 已提交
35 36 37 38 39 40 41 42 43 44
    def __init__(self, is_thread_mode, interval_s, server_worker_num):
        self._is_thread_mode = is_thread_mode
        if is_thread_mode:
            # Because the Channel in the thread mode cannot be
            # accessed across processes, when using thread mode,
            # the PerformanceTracer is also the thread mode.
            # However, performance may be affected by GIL.
            self._data_buffer = Queue.Queue()
        else:
            self._data_buffer = multiprocessing.Manager().Queue()
B
barriery 已提交
45
        self._interval_s = interval_s
B
barriery 已提交
46
        self._thrd = None
B
barriery 已提交
47 48
        self._proc = None
        self._channels = []
B
barriery 已提交
49 50
        # The size of data in Channel will not exceed server_worker_num
        self._server_worker_num = server_worker_num
B
barriery 已提交
51 52 53 54 55

    def data_buffer(self):
        return self._data_buffer

    def start(self):
B
barriery 已提交
56 57 58 59 60 61 62 63 64 65
        if self._is_thread_mode:
            self._thrd = threading.Thread(
                target=self._trace_func, args=(self._channels, ))
            self._thrd.daemon = True
            self._thrd.start()
        else:
            self._proc = multiprocessing.Process(
                target=self._trace_func, args=(self._channels, ))
            self._proc.daemon = True
            self._proc.start()
B
barriery 已提交
66 67 68 69 70

    def set_channels(self, channels):
        self._channels = channels

    def _trace_func(self, channels):
B
barrierye 已提交
71
        all_actions = ["in", "prep", "midp", "postp", "out"]
B
barriery 已提交
72
        calcu_actions = ["prep", "midp", "postp"]
B
barriery 已提交
73 74
        while True:
            op_cost = {}
B
barrierye 已提交
75
            err_request = []
B
barriery 已提交
76
            err_count = 0
B
barriery 已提交
77

78
            _LOGGER.info("==================== TRACER ======================")
B
barriery 已提交
79
            # op
B
barriery 已提交
80 81
            while True:
                try:
B
barrierye 已提交
82 83 84 85 86 87 88 89 90 91
                    item = self._data_buffer.get_nowait()
                    name = item["name"]
                    actions = item["actions"]

                    if name == "DAG":
                        succ = item["succ"]
                        req_id = item["id"]
                        if not succ:
                            err_count += 1
                            err_request.append(req_id)
B
barriery 已提交
92

B
barriery 已提交
93 94
                    if name not in op_cost:
                        op_cost[name] = {}
B
barrierye 已提交
95 96 97 98 99

                    for action, cost in actions.items():
                        if action not in op_cost[name]:
                            op_cost[name][action] = []
                        op_cost[name][action].append(cost)
B
barriery 已提交
100 101 102 103 104 105 106 107 108 109 110
                except Queue.Empty:
                    break

            if len(op_cost) != 0:
                for name in op_cost:
                    tot_cost, calcu_cost = 0.0, 0.0
                    for action, costs in op_cost[name].items():
                        op_cost[name][action] = sum(costs) / (1e3 * len(costs))
                        tot_cost += op_cost[name][action]

                    if name != "DAG":
111
                        _LOGGER.info("Op({}):".format(name))
B
barrierye 已提交
112
                        for action in all_actions:
B
barriery 已提交
113
                            if action in op_cost[name]:
114
                                _LOGGER.info("\t{}[{} ms]".format(
B
barriery 已提交
115 116 117 118
                                    action, op_cost[name][action]))
                        for action in calcu_actions:
                            if action in op_cost[name]:
                                calcu_cost += op_cost[name][action]
119
                        _LOGGER.info("\tidle[{}]".format(1 - 1.0 * calcu_cost /
B
barriery 已提交
120 121 122 123 124 125 126 127 128
                                                         tot_cost))

            if "DAG" in op_cost:
                calls = op_cost["DAG"].values()
                calls.sort()
                tot = len(calls)
                qps = 1.0 * tot / self._interval_s
                ave_cost = sum(calls) / tot
                latencys = [50, 60, 70, 80, 90, 95, 99]
129
                _LOGGER.info("DAGExecutor:")
B
barrierye 已提交
130 131 132
                _LOGGER.info("\tQuery count[{}]".format(tot))
                _LOGGER.info("\tQPS[{} q/s]".format(qps))
                _LOGGER.info("\tSucc[{}]".format(1 - 1.0 * err_count / tot))
B
barriery 已提交
133 134
                _LOGGER.info("\tError req[{}]".format(", ".join(
                    [str(x) for x in err_request])))
B
barrierye 已提交
135
                _LOGGER.info("\tLatency:")
136
                _LOGGER.info("\t\tave[{} ms]".format(ave_cost))
B
barriery 已提交
137
                for latency in latencys:
138
                    _LOGGER.info("\t\t.{}[{} ms]".format(latency, calls[int(
B
barriery 已提交
139
                        tot * latency / 100.0)]))
B
barriery 已提交
140 141

            # channel
142
            _LOGGER.info("Channel (server worker num[{}]):".format(
B
barriery 已提交
143
                self._server_worker_num))
B
barriery 已提交
144
            for channel in channels:
145
                _LOGGER.info("\t{}(In: {}, Out: {}) size[{}/{}]".format(
B
barriery 已提交
146 147 148 149
                    channel.name,
                    channel.get_producers(),
                    channel.get_consumers(),
                    channel.size(), channel.get_maxsize()))
B
barriery 已提交
150 151 152
            time.sleep(self._interval_s)


B
barriery 已提交
153
class UnsafeTimeProfiler(object):
154 155
    """ thread unsafe profiler """

B
barriery 已提交
156 157 158 159 160 161 162 163 164 165 166 167
    def __init__(self):
        self.pid = os.getpid()
        self.print_head = 'PROFILE\tpid:{}\t'.format(self.pid)
        self.time_record = [self.print_head]
        self._enable = False

    def enable(self, enable):
        self._enable = enable

    def record(self, name):
        if self._enable is False:
            return
B
barriery 已提交
168 169 170
        timestamp = int(round(_time() * 1000000))
        self.time_record.append('{}:{} '.format(name, timestamp))
        return timestamp
B
barriery 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185

    def print_profile(self):
        if self._enable is False:
            return
        sys.stderr.write(self.gen_profile_str())

    def gen_profile_str(self):
        if self._enable is False:
            return
        self.time_record.append('\n')
        profile_str = ''.join(self.time_record)
        self.time_record = [self.print_head]
        return profile_str


D
dongdaxiang 已提交
186 187 188 189 190 191
class TimeProfiler(object):
    def __init__(self):
        self._pid = os.getpid()
        self._print_head = 'PROFILE\tpid:{}\t'.format(self._pid)
        self._time_record = Queue.Queue()
        self._enable = False
B
barrierye 已提交
192
        self._lock = threading.Lock()
D
dongdaxiang 已提交
193 194 195 196 197 198 199

    def enable(self, enable):
        self._enable = enable

    def record(self, name_with_tag):
        if self._enable is False:
            return
B
barriery 已提交
200
        timestamp = int(round(_time() * 1000000))
D
dongdaxiang 已提交
201 202 203
        name_with_tag = name_with_tag.split("_")
        tag = name_with_tag[-1]
        name = '_'.join(name_with_tag[:-1])
B
barrierye 已提交
204 205
        with self._lock:
            self._time_record.put((name, tag, timestamp))
B
barriery 已提交
206
        return timestamp
D
dongdaxiang 已提交
207 208

    def print_profile(self):
209 210
        if self._enable is False:
            return
B
barrierye 已提交
211 212 213
        sys.stderr.write(self.gen_profile_str())

    def gen_profile_str(self):
D
dongdaxiang 已提交
214 215 216 217
        if self._enable is False:
            return
        print_str = self._print_head
        tmp = {}
B
barrierye 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230
        with self._lock:
            while not self._time_record.empty():
                name, tag, timestamp = self._time_record.get()
                if name in tmp:
                    ptag, ptimestamp = tmp.pop(name)
                    print_str += "{}_{}:{} ".format(name, ptag, ptimestamp)
                    print_str += "{}_{}:{} ".format(name, tag, timestamp)
                else:
                    tmp[name] = (tag, timestamp)
            print_str = "\n{}\n".format(print_str)
            for name, item in tmp.items():
                tag, timestamp = item
                self._time_record.put((name, tag, timestamp))
B
barrierye 已提交
231
            return print_str