or_issue.py doc update and fix (#1733)

This commit is contained in:
Kareem Farid
2023-04-11 01:24:54 +02:00
committed by GitHub
parent 97fc540e76
commit 49c28da7bb
3 changed files with 10 additions and 11 deletions

View File

@@ -38,14 +38,14 @@ You'll have to extract three key elements from the **verbose** logs (i.e. ./flow
As a practical example, for this log from openlane.log:
```
[INFO]: Changing layout to designs/spm/runs/RUN_2022.03.01_19.21.10/tmp/routing/17-fill.def
[INFO]: Changing layout to designs/spm/runs/RUN_2022.03.01_19.21.10/tmp/routing/17-fill.odb
[...]
[INFO]: Running Detailed Routing...
[INFO]: Running OpenROAD script scripts/openroad/droute.tcl...
```
The three elements would be:
* input: `designs/spm/runs/RUN_2022.03.01_19.21.10/tmp/routing/17-fill.def`
* input: `designs/spm/runs/RUN_2022.03.01_19.21.10/tmp/routing/17-fill.odb`
* script: `scripts/openroad/droute.tcl`
* run_path: `designs/spm/runs/RUN_2022.03.01_19.21.10`
@@ -54,8 +54,8 @@ Then you'd want to run this script as follows, from the root of the OpenLane Rep
python3 ./scripts/or_issue.py\
--tool openroad\
--script ./scripts/openroad/droute.tcl\
designs/spm/runs/RUN_2022.03.01_19.21.10/tmp/routing/17-fill.def
# run path is implicitly specified by input def
designs/spm/runs/RUN_2022.03.01_19.21.10/tmp/routing/17-fill.odb
# run path is implicitly specified by input odb
```
Which will create a folder called `_build`, with a single subfolder. Ensure that you inspect this folder manually and the output of this script. This script only attempts a best effort, and it is very likely that it might miss something, in which case, feel free to file an issue.