Graphing#

Pyjion can create .dot (graphviz) graphs for any function during the compilation process:

import pyjion
pyjion.enable()
pyjion.config(graph=True)

Once this is enabled and functions have been compiled, you can get the graph using the graph() function:

>>> pyjion.graph(f)

digraph f {
...

You can use a tool like GraphViz Online to render the graph:

_images/isnone.png