File tree 3 files changed +2
-17
lines changed
3 files changed +2
-17
lines changed Original file line number Diff line number Diff line change @@ -868,14 +868,6 @@ Setting any of the following 5 options selects :ref:`Dusty's annealing schedule
868
868
869
869
**Default: ** ``0.25 ``
870
870
871
- .. option :: --place_cost_exp <float >
872
-
873
- Wiring cost is divided by the average channel width over a net's bounding box
874
- taken to this exponent. Only impacts devices with different channel widths in
875
- different directions or regions.
876
-
877
- **Default: ** ``1 ``
878
-
879
871
.. option :: --RL_agent_placement {on | off}
880
872
881
873
Uses a Reinforcement Learning (RL) agent in choosing the appropiate move type in placement.
Original file line number Diff line number Diff line change @@ -991,11 +991,6 @@ enum class e_move_type;
991
991
* @param timing_tradeoff
992
992
* When in CRITICALITY_TIMING_PLACE mode, what is the
993
993
* tradeoff between timing and wiring costs.
994
- * @param place_cost_exp
995
- * Wiring cost is divided by the average channel width over
996
- * a net's bounding box taken to this exponent.
997
- * Only impacts devices with different channel widths in
998
- * different directions or regions. (Default: 1)
999
994
* @param place_chan_width
1000
995
* The channel width assumed if only one placement is performed.
1001
996
* @param pad_loc_type
Original file line number Diff line number Diff line change @@ -253,17 +253,15 @@ class NetCostHandler {
253
253
* @details This is only useful for the cost function that takes the length of the net bounding box in each
254
254
* dimension divided by the average number of tracks in that direction. For other cost functions, you don't
255
255
* have to bother calling this routine; when using the cost function described above, however, you must always
256
- * call this routine before you do any placement cost determination. The place_cost_exp factor specifies to
257
- * what power the width of the channel should be taken -- larger numbers make narrower channels more expensive.
256
+ * call this routine before you do any placement cost determination.
258
257
*/
259
258
void alloc_and_load_chan_w_factors_for_place_cost_ ();
260
259
261
260
/* *
262
261
* @brief Allocates and loads acc_tile_num_inter_die_conn_ which contains the accumulative number of inter-die
263
262
* conntections.
264
263
*
265
- * @details This is only useful for multi-die FPGAs. The place_cost_exp factor specifies to
266
- * what power the average number of inter-die connections should be take -- larger numbers make narrower channels more expensive.
264
+ * @details This is only useful for multi-die FPGAs.
267
265
*/
268
266
void alloc_and_load_for_fast_vertical_cost_update_ ();
269
267
You can’t perform that action at this time.
0 commit comments