Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix usage command in docs #1449

Merged
merged 1 commit into from
Oct 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/source/usage/exploration_script.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ You can view the results of the run against some designs (more [here](#usage)) a
The script can be used in two ways

1. Running one or more designs.

```bash
python3 run_designs.py --threads 4 spm xtea PPU APU
```

You can run the default test set consisting of all designs under [designs](../../../designs/) through running the following command along with any of the flags:

```bash
python3 run_design.py --defaultTestSet
python3 run_designs.py --defaultTestSet
```

2. An exploration run that generates configuration files of all possible combinations of the passed regression file and runs them on the provided designs.

```bash
python3 run_designs.py --regression ./scripts/config/regression.config --threads 2 spm xtea
```
Expand Down Expand Up @@ -80,7 +80,7 @@ The script can be used in two ways
```
FP_CORE_UTIL=(40,50)
PL_TARGET_DENSITY=(FP_CORE_UTIL*0.01-0.1,0.4)

extra="
set ::env(SYNTH_MAX_FANOUT) { $::env(FP_ASPECT_RATIO) * 5 }
"
Expand Down