|
3 | 3 | [](https://jenkins.openroad.tools/view/Public/job/OpenROAD-flow-scripts-Public/job/public_tests_all/job/master/) |
4 | 4 | [](https://openroad-flow-scripts.readthedocs.io/en/latest/?badge=latest) |
5 | 5 |
|
6 | | -OpenROAD Flow is a full RTL-to-GDS flow built entirely on open-source tools. |
7 | | -The project aims for automated, no-human-in-the-loop digital circuit design |
8 | | -with 24-hour turnaround time. |
| 6 | +OpenROAD-flow-scripts(ORFS) is a fully autonomous, RTL-GDSII flow |
| 7 | +for rapid architecture and design space exploration, early prediction |
| 8 | +of QoR and detailed physical design implementation. However, ORFS |
| 9 | +also enables manual intervention for finer user control of individual |
| 10 | +flow stages through tcl commands and python APIs. |
| 11 | + |
| 12 | + |
| 13 | + |
| 14 | +## Tool Installation |
| 15 | + |
| 16 | +### Local Installation |
| 17 | + |
| 18 | +To install OpenROAD-flow-scripts locally in CentOS 7, Ubuntu 20.04, |
| 19 | +Ubuntu 22.04, RHEL 8, Debian 10 and Debian 11. Following steps will |
| 20 | +clone the ORFS repo, install required dependencies and build the flow. |
| 21 | + |
| 22 | +#### Clone ORFS repo |
| 23 | + |
| 24 | +``` |
| 25 | +git clone --recursive https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts |
| 26 | +``` |
| 27 | + |
| 28 | +#### Install Dependencies |
| 29 | + |
| 30 | +``` |
| 31 | +cd OpenROAD-flow-scripts |
| 32 | +sudo ./setup.sh |
| 33 | +``` |
| 34 | + |
| 35 | +#### Build the Flow |
| 36 | + |
| 37 | +``` |
| 38 | +./build_openroad.sh --local |
| 39 | +``` |
| 40 | + |
| 41 | +Document for local installation found [here](./docs/user/BuildLocally.md). |
| 42 | + |
| 43 | +### Docker Based Installation |
| 44 | +To ease dependency installation issues, ORFS uses docker images. |
| 45 | +Docker image includes ORFS binaries, applications as well as all |
| 46 | +required dependencies. All of the flow tools are encapsulated |
| 47 | +inside the container image. |
| 48 | + |
| 49 | +If `Docker` is not installed already, refer to the document |
| 50 | +[here](./docs/user/DockerInstall.md) on how to install and how to |
| 51 | +manage docker as non-root user. |
| 52 | + |
| 53 | +### Build ORFS with Docker |
| 54 | + |
| 55 | +#### Clone ORFS repo |
| 56 | + |
| 57 | +``` |
| 58 | +git clone --recursive https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts |
| 59 | +``` |
| 60 | + |
| 61 | +#### Build the Flow |
| 62 | + |
| 63 | +``` |
| 64 | +cd OpenROAD-flow-scripts |
| 65 | +./build_openroad.sh |
| 66 | +``` |
| 67 | + |
| 68 | +Document for Docker based installation found [here](./docs/user/BuildWithDocker.md) |
| 69 | + |
| 70 | +### Verify Local Installation |
| 71 | +To verify installation run default `gcd/nangate45` design with |
| 72 | +following steps, |
| 73 | + |
| 74 | +``` |
| 75 | +source env.sh |
| 76 | +cd flow |
| 77 | +make |
| 78 | +``` |
| 79 | + |
| 80 | +Above steps run from synthesis to GDSII generation and you can view final layout with OpenROAD GUI as, |
| 81 | + |
| 82 | +``` |
| 83 | +make gui_final |
| 84 | +``` |
| 85 | + |
| 86 | + |
9 | 87 |
|
10 | 88 | ## Using the Flow |
11 | 89 |
|
12 | 90 | - See the OpenROAD [documentation here](https://openroad.readthedocs.io/en/latest/). |
13 | 91 | - How to [start using OpenROAD flow here](https://openroad-flow-scripts.readthedocs.io/en/latest/user/GettingStarted.html). |
14 | | -- Our [user guide here](https://openroad-flow-scripts.readthedocs.io/en/latest/user/UserGuide.html). |
15 | | -- Our [Flow Tutorial here](https://openroad-flow-scripts.readthedocs.io/en/latest/tutorials/FlowTutorial.html). |
| 92 | +- Our ORFS [user guide here](https://openroad-flow-scripts.readthedocs.io/en/latest/user/UserGuide.html). |
| 93 | +- Our ORFS [Flow Tutorial here](https://openroad-flow-scripts.readthedocs.io/en/latest/tutorials/FlowTutorial.html). |
16 | 94 |
|
17 | 95 | ## Citing this Work |
18 | 96 |
|
|
0 commit comments