File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -112,8 +112,8 @@ void get_segment_usage_stats(std::vector<t_segment_inf>& segment_inf) {
112
112
}
113
113
114
114
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 " );
117
117
std::set<int > seen_lengths;
118
118
for (size_t seg_type = 0 ; seg_type < segment_inf.size (); seg_type++) {
119
119
int seg_length = segment_inf[seg_type].length ;
@@ -132,8 +132,7 @@ void get_segment_usage_stats(std::vector<t_segment_inf>& segment_inf) {
132
132
cap += directed_cap_by_length[ax][seg_length];
133
133
}
134
134
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);
137
136
}
138
137
}
139
138
You can’t perform that action at this time.
0 commit comments