You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.4 KiB
Markdown

2 years ago
# branch=pd
* for source experiments (parameters, etc. to change core gen), and other source updates for PD
2 years ago
### minimize cache/queues/etc. for eFabless
2 years ago
* the parameters were likely not tested much, and may have dependencies, etc.
* see which ones can change and still compile/run simple test; document dependencies
2 years ago
### test OpenROAD tools
2 years ago
1. try unit/sub-unit synthesis and static timing, using blackbox arrays amd estimated wiring for some pdk (nangate45?)
2 years ago
2 years ago
* equivalent to a CI timing script to catch functional changes that break timing
* what are the OR steps to do this? can this be done with only yosys script?s
2 years ago
* floorplan - unbounded?
* pins - no placement if no bounds, and relaxed i/o assertions?
* tap cells/power dist/etc. - not needed (account for in estimated wiring?)
* clock tree synthesis - no (assume ideal clocks + fudge)
* iterate
* placement
* cap/slew/fo checks
* setup/hold
2 years ago
2 years ago
* are results consistent with expected cycle time?
2 years ago
2 years ago
### Yosys
* blackbox arrays
```
cd synth
yosys -s synth.yo
```
### OpenROAD
* https://openroad.readthedocs.io/en/latest/user/BuildWithDocker.html
* yosys, OpenROAD, LSOracle
```
git clone --recursive https://github.com/The-OpenROAD-Project/OpenROAD-flow-scripts
cd OpenROAD-flow-scripts
./build_openroad.sh [--threads n]
```
```
docker run -it -u $(id -u ${USER}):$(id -g ${USER}) -v $(pwd)/flow/platforms:/OpenROAD-flow-scripts/flow/platforms:ro openroad/flow-scripts
```