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
User-settable coefficient values (`coeff_perform`, `coeff_power`, `coeff_area`) of three objectives to set the direction of tuning are written in the script. Each coefficient is expressed as a global variable at the `get_ppa` function in `PPAImprov` class in the script (`coeff_perform`, `coeff_power`, `coeff_area`). Efforts to optimize each of the objectives are proportional to the specified coefficients.
21
+
User-defined coefficient values (`coeff_perform`, `coeff_power`, `coeff_area`) of three objectives to set the direction of tuning are written in the script. Each coefficient is expressed as a global variable at the `get_ppa` function in `PPAImprov` class in the script (`coeff_perform`, `coeff_power`, `coeff_area`). Efforts to optimize each of the objectives are proportional to the specified coefficients.
22
22
23
23
24
+
## Setting up AutoTuner
25
+
26
+
To setup AutoTuner, make sure you have a virtual environment set up with
27
+
Python 3.9.X. There are plenty of ways to do this, we recommend using
|`--openroad_threads`| Max number of threads usable. |
155
174
|`--server`| The address of Ray server to connect. |
156
-
|`--port`|Tbe port of Ray server to connect. |
157
-
|`-v` or `--verbose`| Verbosity Level. [0: Only ray status, 1: print stderr, 2: also print training stdout |
175
+
|`--port`|The port of Ray server to connect. |
176
+
|`-v` or `--verbose`| Verbosity Level. [0: Only ray status, 1: print stderr, 2: also print training stdout.|
158
177
|||
159
178
### GUI
160
179
@@ -163,6 +182,18 @@ You could find the "Best config found" on the screen.
163
182
164
183
To use TensorBoard GUI, run `tensorboard --logdir=./<logpath>`. While TensorBoard is running, you can open the webpage `http://localhost:6006/` to see the GUI.
165
184
185
+
We show three different views possible at the end, namely: `Table View`, `Scatter Plot Matrix View` and `Parallel Coordinate View`.
0 commit comments