We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3524cb commit e5773c4Copy full SHA for e5773c4
examples/dataflow_example/dataflow_example.py
@@ -47,7 +47,10 @@ def mkMultAdd():
47
df.make_always()
48
49
# draw dataflow graph in png
50
- df.draw_graph()
+ try:
51
+ df.draw_graph()
52
+ except:
53
+ print('Dataflow graph could not be generated.')
54
55
return m
56
tests/lib_dataflow_/draw_graph/lib_dataflow_draw_graph.py
@@ -32,7 +32,10 @@ def mkLed():
32
33
34
35
- df.draw_graph('out.png')
36
37
38
39
40
41
0 commit comments