Pyverilog
Pyverilog copied to clipboard
Error running example_graphgen.py
When executing the example as in README:
python3 pyverilog/examples/example_graphgen.py -t top -s top.led test.v
Got the following output:
Generating LALR tables
WARNING: 183 shift/reduce conflicts
Traceback (most recent call last):
File "Pyverilog-develop/examples/example_graphgen.py", line 107, in
The reason seems related to the fixing of #72 , i.e., the example is not updated accordingly. Replacing reorder=options.reorder with do_reorder=options.reorder of line 101 of example/example_graphgen.py might resolve the issue
Yes, this is still an issue. Replacing reorder=options.reorder with do_reorder=options.reorder worked for me!