profiler.py 7.9 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

B
barriery 已提交
30
_TRACER = logging.getLogger("pipeline.profiler")
B
barrierye 已提交
31

D
dongdaxiang 已提交
32

B
barriery 已提交
33
class PerformanceTracer(object):
B
barriery 已提交
34 35 36 37 38 39 40 41 42 43
    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 已提交
44
        self._interval_s = interval_s
B
barriery 已提交
45
        self._thrd = None
B
barriery 已提交
46 47
        self._proc = None
        self._channels = []
B
barriery 已提交
48 49
        # The size of data in Channel will not exceed server_worker_num
        self._server_worker_num = server_worker_num
B
barriery 已提交
50 51 52 53 54

    def data_buffer(self):
        return self._data_buffer

    def start(self):
B
barriery 已提交
55 56 57 58 59 60 61 62 63 64
        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 已提交
65 66 67 68 69

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

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

B
barriery 已提交
76
            _TRACER.info("==================== TRACER ======================")
B
barriery 已提交
77
            # op
B
barriery 已提交
78 79 80 81 82 83 84
            while True:
                try:
                    name, action, stage, cost = self._data_buffer.get_nowait()
                    if stage == False:
                        # only for name == DAG
                        assert name == "DAG"
                        err_count += 1
B
barriery 已提交
85 86 87 88 89
                    if name not in op_cost:
                        op_cost[name] = {}
                    if action not in op_cost[name]:
                        op_cost[name][action] = []
                    op_cost[name][action].append(cost)
B
barriery 已提交
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
                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":
                        _TRACER.info("Op({}):".format(name))
                        for action in actions:
                            if action in op_cost[name]:
                                _TRACER.info("\t{}[{} ms]".format(
                                    action, op_cost[name][action]))
                        for action in calcu_actions:
                            if action in op_cost[name]:
                                calcu_cost += op_cost[name][action]
                        _TRACER.info("\tidle[{}]".format(1 - 1.0 * calcu_cost /
                                                         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]
                _TRACER.info("DAGExecutor:")
                _TRACER.info("\tquery count[{}]".format(tot))
                _TRACER.info("\tqps[{} q/s]".format(qps))
                _TRACER.info("\tsucc[{}]".format(1 - 1.0 * err_count / tot))
                _TRACER.info("\tlatency:")
                _TRACER.info("\t\tave[{} ms]".format(ave_cost))
                for latency in latencys:
                    _TRACER.info("\t\t.{}[{} ms]".format(latency, calls[int(
                        tot * latency / 100.0)]))
B
barriery 已提交
128 129

            # channel
B
barriery 已提交
130 131
            _TRACER.info("Channel (server worker num[{}]):".format(
                self._server_worker_num))
B
barriery 已提交
132
            for channel in channels:
B
barriery 已提交
133 134 135 136 137
                _TRACER.info("\t{}(In: {}, Out: {}) size[{}/{}]".format(
                    channel.name,
                    channel.get_producers(),
                    channel.get_consumers(),
                    channel.size(), channel.get_maxsize()))
B
barriery 已提交
138 139 140
            time.sleep(self._interval_s)


B
barriery 已提交
141
class UnsafeTimeProfiler(object):
142 143
    """ thread unsafe profiler """

B
barriery 已提交
144 145 146 147 148 149 150 151 152 153 154 155
    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 已提交
156 157 158
        timestamp = int(round(_time() * 1000000))
        self.time_record.append('{}:{} '.format(name, timestamp))
        return timestamp
B
barriery 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173

    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 已提交
174 175 176 177 178 179
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 已提交
180
        self._lock = threading.Lock()
D
dongdaxiang 已提交
181 182 183 184 185 186 187

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

    def record(self, name_with_tag):
        if self._enable is False:
            return
B
barriery 已提交
188
        timestamp = int(round(_time() * 1000000))
D
dongdaxiang 已提交
189 190 191
        name_with_tag = name_with_tag.split("_")
        tag = name_with_tag[-1]
        name = '_'.join(name_with_tag[:-1])
B
barrierye 已提交
192 193
        with self._lock:
            self._time_record.put((name, tag, timestamp))
B
barriery 已提交
194
        return timestamp
D
dongdaxiang 已提交
195 196

    def print_profile(self):
197 198
        if self._enable is False:
            return
B
barrierye 已提交
199 200 201
        sys.stderr.write(self.gen_profile_str())

    def gen_profile_str(self):
D
dongdaxiang 已提交
202 203 204 205
        if self._enable is False:
            return
        print_str = self._print_head
        tmp = {}
B
barrierye 已提交
206 207 208 209 210 211 212 213 214 215 216 217 218
        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 已提交
219
            return print_str