profiler.py 9.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
W
wangjiawei04 已提交
29
import copy
30 31
_LOGGER = logging.getLogger(__name__)
_LOGGER.propagate = False
B
barrierye 已提交
32

W
wangjiawei04 已提交
33
_is_profile = int(os.environ.get('FLAGS_profile_pipeline', 0))
D
dongdaxiang 已提交
34

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

    def data_buffer(self):
        return self._data_buffer

    def start(self):
B
bjjwwang 已提交
58 59 60 61 62
        self._thrd = threading.Thread(
            target=self._trace_func, args=(self._channels, ))
        self._thrd.daemon = True
        self._thrd.start()
        """
B
barriery 已提交
63 64 65 66 67 68 69 70 71 72
        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
bjjwwang 已提交
73
        """
B
barriery 已提交
74 75 76 77 78

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

    def _trace_func(self, channels):
B
barrierye 已提交
79
        all_actions = ["in", "prep", "midp", "postp", "out"]
B
barriery 已提交
80
        calcu_actions = ["prep", "midp", "postp"]
B
barriery 已提交
81 82
        while True:
            op_cost = {}
B
barrierye 已提交
83
            err_request = []
B
barriery 已提交
84
            err_count = 0
B
barriery 已提交
85

86
            _LOGGER.info("==================== TRACER ======================")
B
barriery 已提交
87
            # op
B
barriery 已提交
88 89
            while True:
                try:
B
barrierye 已提交
90 91 92
                    item = self._data_buffer.get_nowait()
                    name = item["name"]
                    actions = item["actions"]
W
wangjiawei04 已提交
93
                    
B
barrierye 已提交
94 95 96 97 98 99
                    if name == "DAG":
                        succ = item["succ"]
                        req_id = item["id"]
                        if not succ:
                            err_count += 1
                            err_request.append(req_id)
B
barriery 已提交
100

B
barriery 已提交
101 102
                    if name not in op_cost:
                        op_cost[name] = {}
B
barrierye 已提交
103 104 105 106 107

                    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 已提交
108 109 110 111 112 113 114 115 116 117
                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":
118
                        _LOGGER.info("Op({}):".format(name))
W
wangjiawei04 已提交
119
                        
B
barrierye 已提交
120
                        for action in all_actions:
B
barriery 已提交
121
                            if action in op_cost[name]:
122
                                _LOGGER.info("\t{}[{} ms]".format(
B
barriery 已提交
123 124 125 126
                                    action, op_cost[name][action]))
                        for action in calcu_actions:
                            if action in op_cost[name]:
                                calcu_cost += op_cost[name][action]
127
                        _LOGGER.info("\tidle[{}]".format(1 - 1.0 * calcu_cost /
B
barriery 已提交
128
                                                         tot_cost))
B
bjjwwang 已提交
129
            self.profile_dict = copy.deepcopy(op_cost)
W
wangjiawei04 已提交
130
                
B
barriery 已提交
131
            if "DAG" in op_cost:
T
TeslaZhao 已提交
132
                calls = list(op_cost["DAG"].values())
B
barriery 已提交
133 134 135 136 137
                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]
138
                _LOGGER.info("DAGExecutor:")
B
barrierye 已提交
139 140 141
                _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 已提交
142 143
                _LOGGER.info("\tError req[{}]".format(", ".join(
                    [str(x) for x in err_request])))
B
barrierye 已提交
144
                _LOGGER.info("\tLatency:")
145
                _LOGGER.info("\t\tave[{} ms]".format(ave_cost))
B
barriery 已提交
146
                for latency in latencys:
147
                    _LOGGER.info("\t\t.{}[{} ms]".format(latency, calls[int(
B
barriery 已提交
148
                        tot * latency / 100.0)]))
W
wangjiawei04 已提交
149 150 151 152 153 154 155 156 157 158 159
                if _is_profile:
                    self.profile_dict["DAG"]["query_count"] = tot
                    self.profile_dict["DAG"]["qps"] = qps
                    self.profile_dict["DAG"]["succ"] = 1 - 1.0 * err_count / tot
                    self.profile_dict["DAG"]["avg"] = ave_cost
                    for latency in latencys:
                        self.profile_dict["DAG"][str(latency)] = calls[int(tot * latency / 100.0)]
            if _is_profile:
                import yaml
                with open("benchmark.log", "w") as fout:
                    yaml.dump(self.profile_dict, fout, default_flow_style=False)
B
barriery 已提交
160
            # channel
161
            _LOGGER.info("Channel (server worker num[{}]):".format(
B
barriery 已提交
162
                self._server_worker_num))
B
barriery 已提交
163
            for channel in channels:
164
                _LOGGER.info("\t{}(In: {}, Out: {}) size[{}/{}]".format(
B
barriery 已提交
165 166 167 168
                    channel.name,
                    channel.get_producers(),
                    channel.get_consumers(),
                    channel.size(), channel.get_maxsize()))
B
barriery 已提交
169 170 171
            time.sleep(self._interval_s)


B
barriery 已提交
172
class UnsafeTimeProfiler(object):
173 174
    """ thread unsafe profiler """

B
barriery 已提交
175 176 177 178 179 180 181 182 183 184 185 186
    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 已提交
187 188 189
        timestamp = int(round(_time() * 1000000))
        self.time_record.append('{}:{} '.format(name, timestamp))
        return timestamp
B
barriery 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204

    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 已提交
205 206 207 208 209 210
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 已提交
211
        self._lock = threading.Lock()
D
dongdaxiang 已提交
212 213 214 215 216 217 218

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

    def record(self, name_with_tag):
        if self._enable is False:
            return
B
barriery 已提交
219
        timestamp = int(round(_time() * 1000000))
D
dongdaxiang 已提交
220 221 222
        name_with_tag = name_with_tag.split("_")
        tag = name_with_tag[-1]
        name = '_'.join(name_with_tag[:-1])
B
barrierye 已提交
223 224
        with self._lock:
            self._time_record.put((name, tag, timestamp))
B
barriery 已提交
225
        return timestamp
D
dongdaxiang 已提交
226 227

    def print_profile(self):
228 229
        if self._enable is False:
            return
B
barrierye 已提交
230 231 232
        sys.stderr.write(self.gen_profile_str())

    def gen_profile_str(self):
D
dongdaxiang 已提交
233 234 235 236
        if self._enable is False:
            return
        print_str = self._print_head
        tmp = {}
B
barrierye 已提交
237 238 239 240 241 242 243 244 245 246 247 248 249
        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 已提交
250
            return print_str