You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user/InstructionsForAutoTuner.md
+12-14Lines changed: 12 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,10 +27,6 @@ We have provided two convenience scripts, `./installer.sh` and `./setup.sh`
27
27
that works in Python3.8 for installation and configuration of AutoTuner,
28
28
as shown below:
29
29
30
-
```{note}
31
-
Make sure you run the following commands in the ORFS root directory.
32
-
```
33
-
34
30
```shell
35
31
# Install prerequisites
36
32
./tools/AutoTuner/installer.sh
@@ -104,7 +100,7 @@ For Global Routing parameters that are set on `fastroute.tcl` you can use:
104
100
105
101
### General Information
106
102
107
-
The `distributed.py` script located in `./tools/AutoTuner/src/autotuner` uses [Ray's](https://docs.ray.io/en/latest/index.html) job scheduling and management to
103
+
The `autotuner.distributed` module uses [Ray's](https://docs.ray.io/en/latest/index.html) job scheduling and management to
108
104
fully utilize available hardware resources from a single server
109
105
configuration, on-premise or over the cloud with multiple CPUs.
110
106
@@ -115,35 +111,37 @@ The two modes of operation:
115
111
The `sweep` mode is useful when we want to isolate or test a single or very few
116
112
parameters. On the other hand, `tune` is more suitable for finding
117
113
the best combination of a complex and large number of flow
118
-
parameters. Both modes rely on user-specified search space that is
119
-
defined by a `.json` file, they use the same syntax and format,
120
-
though some features may not be available for sweeping.
114
+
parameters.
121
115
122
116
```{note}
123
117
The order of the parameters matter. Arguments `--design`, `--platform` and
124
118
`--config` are always required and should precede *mode*.
125
119
```
126
120
121
+
```{note}
122
+
The following commands should be run from `./tools/AutoTuner`.
0 commit comments