We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0642f2 commit 51bcfd5Copy full SHA for 51bcfd5
vpr/src/route/segment_stats.cpp
@@ -107,7 +107,7 @@ void get_segment_usage_stats(std::vector<t_segment_inf>& segment_inf) {
107
if (directed_cap_by_length[ax][length] != 0) {
108
std::string length_str = (length == LONGLINE) ? "longline" : std::to_string(length);
109
utilization = (float)directed_occ_by_length[ax][length] / (float)directed_cap_by_length[ax][length];
110
- VTR_LOG(" %s %11.3g\n", length, utilization);
+ VTR_LOG(" %s %11.3g\n", length_str.c_str(), utilization);
111
}
112
113
0 commit comments