Skip to content

Commit b625d58

Browse files
committed
make format
1 parent b2e1530 commit b625d58

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vpr/src/analysis/timing_reports.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ static t_bb get_net_bounding_box(const AtomNetId atom_net_id) {
7272
return t_bb();
7373
return route_tree_bb(rr_graph, *route_tree);
7474
} else {
75-
// If two-stage router is used, we need to first get the cluster net id
76-
// corresponding to the atom net and then get the bounding box of the net
75+
// If two-stage router is used, we need to first get the cluster net id
76+
// corresponding to the atom net and then get the bounding box of the net
7777
// from the route tree. If the net is completely absorbed into a cluster block,
7878
const auto& atom_lookup = g_vpr_ctx.atom().lookup();
7979
const auto& cluster_net_id = atom_lookup.clb_nets(atom_net_id);
@@ -225,8 +225,8 @@ void generate_net_timing_report(const std::string& prefix,
225225

226226
const size_t fanout = atom_netlist.net_sinks(net).size();
227227
const auto& net_bb = get_net_bounding_box(net);
228-
os << net_name << " : "
229-
<< fanout << " : "
228+
os << net_name << " : "
229+
<< fanout << " : "
230230
<< "(" << net_bb.xmin << "," << net_bb.ymin << "," << net_bb.layer_min << "),("
231231
<< net_bb.xmax << "," << net_bb.ymax << "," << net_bb.layer_max << ") : "
232232
<< atom_netlist.pin_name(source_pin).c_str() << " " << source_pin_slack << " : ";

0 commit comments

Comments
 (0)