@@ -250,23 +250,17 @@ class NetCostHandler {
250
250
* have to bother calling this routine; when using the cost function described above, however, you must always
251
251
* call this routine before you do any placement cost determination. The place_cost_exp factor specifies to
252
252
* what power the width of the channel should be taken -- larger numbers make narrower channels more expensive.
253
- *
254
- * @param place_cost_exp It is an exponent to which you take the average inverse channel capacity;
255
- * a higher value would favour wider channels more over narrower channels during placement (usually we use 1).
256
253
*/
257
- void alloc_and_load_chan_w_factors_for_place_cost_ (float place_cost_exp );
254
+ void alloc_and_load_chan_w_factors_for_place_cost_ ();
258
255
259
256
/* *
260
257
* @brief Allocates and loads the chanz_place_cost_fac array with the inverse of
261
258
* the average number of inter-die connections between [subhigh] and [sublow].
262
259
*
263
260
* @details This is only useful for multi-die FPGAs. The place_cost_exp factor specifies to
264
261
* what power the average number of inter-die connections should be take -- larger numbers make narrower channels more expensive.
265
- *
266
- * @param place_cost_exp It is an exponent to which you take the average number of inter-die connections;
267
- * a higher value would favour areas with more inter-die connections over areas with less of those during placement (usually we use 1).
268
262
*/
269
- void alloc_and_load_for_fast_vertical_cost_update_ (float place_cost_exp );
263
+ void alloc_and_load_for_fast_vertical_cost_update_ ();
270
264
271
265
/* *
272
266
* @brief Calculate the new connection delay and timing cost of all the
@@ -519,6 +513,6 @@ class NetCostHandler {
519
513
* @param bounding_box Bounding box of the net which chanz cost factor is to be calculated
520
514
* @return ChanZ cost factor
521
515
*/
522
- float get_chanz_cost_factor (const t_bb& bounding_box, float place_cost_exp );
516
+ float get_chanz_cost_factor (const t_bb& bounding_box);
523
517
524
518
};
0 commit comments