graphviz.py 7.9 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#
# 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.

import os
import random
M
minqiyang 已提交
17
import functools
18 19 20 21 22
import subprocess
import logging


def crepr(v):
23
    if isinstance(v, str):
24 25 26 27 28
        return '"%s"' % v
    return str(v)


class Rank(object):
29

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    def __init__(self, kind, name, priority):
        '''
        kind: str
        name: str
        priority: int
        '''
        self.kind = kind
        self.name = name
        self.priority = priority
        self.nodes = []

    def __str__(self):
        if not self.nodes:
            return ''

        return '{' + 'rank={};'.format(self.kind) + \
               ','.join([node.name for node in self.nodes]) + '}'


class Graph(object):
    rank_counter = 0

    def __init__(self, title, **attrs):
        self.title = title
        self.attrs = attrs
        self.nodes = []
        self.edges = []
        self.rank_groups = {}

    def code(self):
        return self.__str__()

    def rank_group(self, kind, priority):
        name = "rankgroup-%d" % Graph.rank_counter
        Graph.rank_counter += 1
        rank = Rank(kind, name, priority)
        self.rank_groups[name] = rank
        return name

    def node(self, label, prefix, description="", **attrs):
        node = Node(label, prefix, description, **attrs)

        if 'rank' in attrs:
            rank = self.rank_groups[attrs['rank']]
            del attrs['rank']
            rank.nodes.append(node)
        self.nodes.append(node)
        return node

    def edge(self, source, target, **attrs):
        edge = Edge(source, target, **attrs)
        self.edges.append(edge)
        return edge

    def compile(self, dot_path):
        file = open(dot_path, 'w')
        file.write(self.__str__())
87 88
        image_path = os.path.join(os.path.dirname(dot_path),
                                  dot_path[:-3] + "pdf")
89
        cmd = ["dot", "-Tpdf", dot_path, "-o", image_path]
90 91 92 93
        subprocess.Popen(cmd,
                         stdin=subprocess.PIPE,
                         stdout=subprocess.PIPE,
                         stderr=subprocess.PIPE)
94 95 96 97 98 99
        logging.warning("write block debug graph to {}".format(image_path))
        return image_path

    def show(self, dot_path):
        image = self.compile(dot_path)
        cmd = ["open", image]
100 101 102 103
        subprocess.Popen(cmd,
                         stdin=subprocess.PIPE,
                         stdout=subprocess.PIPE,
                         stderr=subprocess.PIPE)
104 105

    def _rank_repr(self):
106
        ranks = sorted(self.rank_groups.items(),
107 108
                       key=functools.cmp_to_key(
                           lambda a, b: a[1].priority > b[1].priority))
109 110 111 112 113 114 115 116 117 118 119 120
        repr = []
        for x in ranks:
            repr.append(str(x[1]))
        return '\n'.join(repr) + '\n'

    def __str__(self):
        reprs = [
            'digraph G {',
            'title = {}'.format(crepr(self.title)),
        ]

        for attr in self.attrs:
121 122
            reprs.append("{key}={value};".format(key=attr,
                                                 value=crepr(self.attrs[attr])))
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149

        reprs.append(self._rank_repr())

        random.shuffle(self.nodes)
        reprs += [str(node) for node in self.nodes]

        for x in self.edges:
            reprs.append(str(x))

        reprs.append('}')
        return '\n'.join(reprs)


class Node(object):
    counter = 1

    def __init__(self, label, prefix, description="", **attrs):
        self.label = label
        self.name = "%s_%d" % (prefix, Node.counter)
        self.description = description
        self.attrs = attrs
        Node.counter += 1

    def __str__(self):
        reprs = '{name} [label={label} {extra} ];'.format(
            name=self.name,
            label=self.label,
M
minqiyang 已提交
150
            extra=',' + ','.join("%s=%s" % (key, crepr(value))
151
                                 for key, value in self.attrs.items())
152 153 154 155 156
            if self.attrs else "")
        return reprs


class Edge(object):
157

158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
    def __init__(self, source, target, **attrs):
        '''
        Link source to target.
        :param source: Node
        :param target: Node
        :param graph: Graph
        :param attrs: dic
        '''
        self.source = source
        self.target = target
        self.attrs = attrs

    def __str__(self):
        repr = "{source} -> {target} {extra}".format(
            source=self.source.name,
            target=self.target.name,
174 175
            extra="" if not self.attrs else "[" +
            ','.join("{}={}".format(attr[0], crepr(attr[1]))
176
                     for attr in self.attrs.items()) + "]")
177 178 179 180 181 182 183 184 185 186 187 188 189 190
        return repr


class GraphPreviewGenerator(object):
    '''
    Generate a graph image for ONNX proto.
    '''

    def __init__(self, title):
        # init graphviz graph
        self.graph = Graph(
            title,
            layout="dot",
            concentrate="true",
191 192
            rankdir="TB",
        )
193 194 195 196 197 198 199 200 201 202 203

        self.op_rank = self.graph.rank_group('same', 2)
        self.param_rank = self.graph.rank_group('same', 1)
        self.arg_rank = self.graph.rank_group('same', 0)

    def __call__(self, path='temp.dot', show=False):
        if not show:
            self.graph.compile(path)
        else:
            self.graph.show(path)

G
gongweibao 已提交
204
    def add_param(self, name, data_type, highlight=False):
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
        label = '\n'.join([
            '<<table cellpadding="5">',
            '  <tr>',
            '    <td bgcolor="#2b787e">',
            '    <b>',
            name,
            '    </b>',
            '    </td>',
            '  </tr>',
            '  <tr>',
            '    <td>',
            str(data_type),
            '    </td>'
            '  </tr>',
            '</table>>',
        ])
221 222 223 224 225 226 227 228 229
        return self.graph.node(label,
                               prefix="param",
                               description=name,
                               shape="none",
                               style="rounded,filled,bold",
                               width="1.3",
                               color="#148b97" if not highlight else "orange",
                               fontcolor="#ffffff",
                               fontname="Arial")
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245

    def add_op(self, opType, **kwargs):
        highlight = False
        if 'highlight' in kwargs:
            highlight = kwargs['highlight']
            del kwargs['highlight']
        return self.graph.node(
            "<<B>%s</B>>" % opType,
            prefix="op",
            description=opType,
            shape="box",
            style="rounded, filled, bold",
            color="#303A3A" if not highlight else "orange",
            fontname="Arial",
            fontcolor="#ffffff",
            width="1.3",
246 247
            height="0.84",
        )
248 249

    def add_arg(self, name, highlight=False):
250 251 252 253 254 255 256 257
        return self.graph.node(crepr(name),
                               prefix="arg",
                               description=name,
                               shape="box",
                               style="rounded,filled,bold",
                               fontname="Arial",
                               fontcolor="#999999",
                               color="#dddddd" if not highlight else "orange")
258 259 260 261 262 263

    def add_edge(self, source, target, **kwargs):
        highlight = False
        if 'highlight' in kwargs:
            highlight = kwargs['highlight']
            del kwargs['highlight']
264 265 266 267
        return self.graph.edge(source,
                               target,
                               color="#00000" if not highlight else "orange",
                               **kwargs)