Skip to content

Commit 71d9279

Browse files
authored
Merge pull request #1180 from vijayank88/fix_tutorial_link
Fix tutorial links
2 parents 91a3771 + 3e3e672 commit 71d9279

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/tutorials/FlowTutorial.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ here [Build from sources using Docker](../user/BuildWithDocker.md).
5959

6060
> **Note:**
6161
> If you need to update an existing OpenROAD-flow-scripts installation,
62-
> follow instructions based on installation from [here](../user/FAQs.md#how-do-i-update-openroad-flow-scripts).
62+
> follow instructions based on installation from [here](../user/FAQS.md#how-do-i-update-openroad-flow-scripts).
6363
6464
OpenROAD-flow-scripts installation is complete.
6565

@@ -133,7 +133,7 @@ less ./platforms/sky130hd/config.mk
133133
The `config.mk` file has all the required variables for the `sky130`
134134
platform and hence it is not recommended to change any variable
135135
definition here. You can view the `sky130hd` platform configuration
136-
[here](../../flow/platforms/sky130hd/config.mk).
136+
[here](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/flow/platforms/sky130hd/config.mk).
137137

138138
Refer to the [Flow variables](../user/FlowVariables.md) document for
139139
details on how to use platform and design specific environment variables
@@ -148,7 +148,7 @@ less ./designs/sky130hd/ibex/config.mk
148148
```
149149

150150
You can view `ibex` design `config.mk`
151-
[here](../../flow/designs/sky130hd/ibex/config.mk).
151+
[here](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/flow/designs/sky130hd/ibex/config.mk).
152152

153153
> **Note** The following design-specific configuration variables are required
154154
> to specify main design inputs such as platform, top-level design name and
@@ -171,7 +171,7 @@ You can view `ibex` design `config.mk`
171171
### Timing Constraints
172172

173173
View timing constraints specified in the `.sdc` file
174-
[here](../../flow/designs/sky130hd/ibex/constraint.sdc).
174+
[here](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/flow/designs/sky130hd/ibex/constraint.sdc).
175175

176176
```
177177
less ./designs/sky130hd/ibex/constraint.sdc
@@ -189,10 +189,10 @@ create_clock -name core_clock -period 17.4 [get_ports {clk_i}]
189189
The Verilog input files are located in `./designs/src/ibex/`
190190

191191
The design is defined in `ibex_core.v` available
192-
[here](../../flow/designs/src/ibex/ibex_core.v).
192+
[here](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/flow/designs/src/ibex/ibex_core.v).
193193

194194
Refer to the `ibex` design `README.md`
195-
[here](../../flow/designs/src/ibex/README.md).
195+
[here](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/flow/designs/src/ibex/README.md).
196196

197197
## Running The Automated RTL-to-GDS Flow
198198

@@ -232,7 +232,7 @@ configuration examples using the Tcl interface and other such details.
232232

233233
Run the `ibex` design in OpenROAD-flow-scripts automated flow from
234234
RTL-to-GDS using `sky130hd`. Find `ibex` design details
235-
[here](../../flow/designs/src/ibex/README.md)
235+
[here](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/flow/designs/src/ibex/README.md)
236236
and the design goals are:
237237

238238
- Area
@@ -501,7 +501,7 @@ If you have completed the RTL-GDS flow, then proceed to view the final
501501
GDS file under results directory `./results/sky130hd/ibex/base/`
502502

503503
For the `ibex` design uncomment the `DESIGN_CONFIG`
504-
variable in the `Makefile` available [here](../../flow/Makefile).
504+
variable in the `Makefile` available [here](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/flow/Makefile).
505505

506506
```
507507
# DESIGN_CONFIG=./designs/sky130hd/gcd/config.mk
@@ -795,7 +795,7 @@ Explore optimization options using synthesis options: `ABC_AREA` and `ABC_SPEED`
795795
Set `ABC_AREA=1` for area optimization and `ABC_SPEED=1` for timing optimization.
796796
Update design `config.mk` for each case and re-run the flow to view impact.
797797

798-
To view `ibex` design [config.mk](../../flow/designs/sky130hd/ibex/config.mk).
798+
To view `ibex` design [config.mk](https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts/blob/master/flow/designs/sky130hd/ibex/config.mk).
799799

800800
```
801801
#Synthesis strategies

0 commit comments

Comments
 (0)