farukyld
farukyld
I get similar error when running this command: ```bash $VTR_ROOT/vtr_flow/scripts/run_vtr_flow.py \ $VTR_ROOT/doc/src/quickstart/blink.v \ $VTR_ROOT/vtr_flow/arch/timing/EArch.xml \ -temp_dir . \ --route_chan_width 100 ``` inside another directory than `VTR_ROOT` as instructed in the...
I am also able to resolve this by replacing this line ```python architecture_file_path = str(vtr.paths.scripts_path / architecture_file) ``` with this: ```python architecture_file_path = str(architecture_file) ``` in this file: `vtr-verilog-to-routing/vtr_flow/scripts/python_libs/vtr/parmys/parmys.py` line...