<#1726 Generate OpenROAD gui script as part of res...
# openlane-development
g
#1726 Generate OpenROAD gui script as part of results Issue created by xobs Description OpenROAD has a very powerful GUI that requires some setup in order to get it working. Notably, the GUI must be passed a series of files to take maximum advantage of the information produced during build synthesis. OpenLane could generate a script file as part of the release process that can be passed directly to openroad. Proposal As an example, I have a script that loads the db, liberty, sdc, and spef files from a project:
Copy code
read_db results/routing/minimax.odb
read_liberty /si/conda/share/pdk/gf180mcuC/libs.ref/gf180mcu_fd_sc_mcu7t5v0/liberty/gf180mcu_fd_sc_mcu7t5v0__tt_025C_5v00.lib
read_sdc results/final/sdc/minimax.sdc
read_spef results/final/spef/minimax.spef
Such a script could be generated very easily as part of the final generation process. The-OpenROAD-Project/OpenLane
g