Skip to content

Commit 6046909

Browse files
committed
remove redundant separator
1 parent 1ad1e90 commit 6046909

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

vpr/src/route/segment_stats.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ void get_segment_usage_stats(std::vector<t_segment_inf>& segment_inf) {
112112
}
113113

114114
VTR_LOG("\n");
115-
VTR_LOG("Segment occupancy by length: name utilization\n");
116-
VTR_LOG(" ---- -----------\n");
115+
VTR_LOG("Segment occupancy by length: Length utilization\n");
116+
VTR_LOG(" ------ -----------\n");
117117
std::set<int> seen_lengths;
118118
for (size_t seg_type = 0; seg_type < segment_inf.size(); seg_type++) {
119119
int seg_length = segment_inf[seg_type].length;
@@ -132,8 +132,7 @@ void get_segment_usage_stats(std::vector<t_segment_inf>& segment_inf) {
132132
cap += directed_cap_by_length[ax][seg_length];
133133
}
134134
utilization = (float)occ / (float)cap;
135-
VTR_LOG(" ---- -----------\n");
136-
VTR_LOG(" %s %11.3g\n", seg_name.c_str(), utilization);
135+
VTR_LOG(" %s %11.3g\n", seg_name.c_str(), utilization);
137136
}
138137
}
139138

0 commit comments

Comments
 (0)