Skip to content

Commit af7950c

Browse files
rename estimate_routing_chann_util(() to estimate_routing_chan_util()
1 parent f5c866a commit af7950c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

vpr/src/place/net_cost_handler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1756,7 +1756,7 @@ std::pair<t_bb, t_bb> NetCostHandler::union_2d_bb_incr(ClusterNetId net_id) cons
17561756
return std::make_pair(merged_num_edge, merged_bb);
17571757
}
17581758

1759-
std::pair<vtr::NdMatrix<double, 3>, vtr::NdMatrix<double, 3>> NetCostHandler::estimate_routing_chann_util() const {
1759+
std::pair<vtr::NdMatrix<double, 3>, vtr::NdMatrix<double, 3>> NetCostHandler::estimate_routing_chan_util() const {
17601760
const auto& cluster_ctx = g_vpr_ctx.clustering();
17611761
const auto& device_ctx = g_vpr_ctx.device();
17621762

vpr/src/place/net_cost_handler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class NetCostHandler {
133133
*
134134
* @return Pair of matrices with relative CHANX and CHANY utilization.
135135
*/
136-
std::pair<vtr::NdMatrix<double, 3>, vtr::NdMatrix<double, 3>> estimate_routing_chann_util() const;
136+
std::pair<vtr::NdMatrix<double, 3>, vtr::NdMatrix<double, 3>> estimate_routing_chan_util() const;
137137

138138
private:
139139
///@brief Specifies whether the bounding box is computed using cube method or per-layer method.

vpr/src/place/placer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ void Placer::copy_locs_to_global_state() {
387387
auto& global_blk_loc_registry = mutable_palce_ctx.mutable_blk_loc_registry();
388388
global_blk_loc_registry = placer_state_.blk_loc_registry();
389389

390-
auto [chanx_util, chany_util] = net_cost_handler_.estimate_routing_chann_util();
390+
auto [chanx_util, chany_util] = net_cost_handler_.estimate_routing_chan_util();
391391

392392
mutable_routing_ctx.chanx_util = std::move(chanx_util);
393393
mutable_routing_ctx.chany_util = std::move(chany_util);

0 commit comments

Comments
 (0)