graphviz.py 8.0 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
#
# 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.

15 16
from __future__ import print_function

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


def crepr(v):
26
    if isinstance(v, six.string_types):
27 28 29 30 31
        return '"%s"' % v
    return str(v)


class Rank(object):
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 87 88 89
    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__())
90 91
        image_path = os.path.join(os.path.dirname(dot_path),
                                  dot_path[:-3] + "pdf")
92
        cmd = ["dot", "-Tpdf", dot_path, "-o", image_path]
93 94 95 96
        subprocess.Popen(cmd,
                         stdin=subprocess.PIPE,
                         stdout=subprocess.PIPE,
                         stderr=subprocess.PIPE)
97 98 99 100 101 102
        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]
103 104 105 106
        subprocess.Popen(cmd,
                         stdin=subprocess.PIPE,
                         stdout=subprocess.PIPE,
                         stderr=subprocess.PIPE)
107 108

    def _rank_repr(self):
109 110 111
        ranks = sorted(six.iteritems(self.rank_groups),
                       key=functools.cmp_to_key(
                           lambda a, b: a[1].priority > b[1].priority))
112 113 114 115 116 117 118 119 120 121 122 123
        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:
124 125
            reprs.append("{key}={value};".format(key=attr,
                                                 value=crepr(self.attrs[attr])))
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152

        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 已提交
153 154
            extra=',' + ','.join("%s=%s" % (key, crepr(value))
                                 for key, value in six.iteritems(self.attrs))
155 156 157 158 159
            if self.attrs else "")
        return reprs


class Edge(object):
160

161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
    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,
177 178 179
            extra="" if not self.attrs else "[" +
            ','.join("{}={}".format(attr[0], crepr(attr[1]))
                     for attr in six.iteritems(self.attrs)) + "]")
180 181 182 183 184 185 186 187 188 189 190 191 192 193
        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",
194 195
            rankdir="TB",
        )
196 197 198 199 200 201 202 203 204 205 206

        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 已提交
207
    def add_param(self, name, data_type, highlight=False):
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
        label = '\n'.join([
            '<<table cellpadding="5">',
            '  <tr>',
            '    <td bgcolor="#2b787e">',
            '    <b>',
            name,
            '    </b>',
            '    </td>',
            '  </tr>',
            '  <tr>',
            '    <td>',
            str(data_type),
            '    </td>'
            '  </tr>',
            '</table>>',
        ])
224 225 226 227 228 229 230 231 232
        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")
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248

    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",
249 250
            height="0.84",
        )
251 252

    def add_arg(self, name, highlight=False):
253 254 255 256 257 258 259 260
        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")
261 262 263 264 265 266

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