Skip to content

Commit a738c49

Browse files
Modified place.cpp
Made small adjustments to the names of the headers, and fixed spacing.
1 parent a496cf1 commit a738c49

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

vpr/src/place/place.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3215,14 +3215,14 @@ static void print_placement_move_types_stats(
32153215
const MoveTypeStat& move_type_stat) {
32163216
float moves, accepted, rejected, aborted;
32173217

3218-
VTR_LOG("\n\nPercentage of different move types and block types:\n");
3218+
VTR_LOG("\n\nPlacement perturbation distribution by block and move type: \n");
32193219

32203220
VTR_LOG(
3221-
"------------------ ----------------- --------------- -------------- -------------- ------------ \n");
3221+
"------------------ ----------------- ---------------- ---------------- --------------- ------------ \n");
32223222
VTR_LOG(
3223-
" Block Type Move Type Percentage(%%) Acceptance(%%) Rejection(%%) Aborted(%%)\n");
3223+
" Block Type Move Type (%%) of Total Accepted(%%) Rejected(%%) Aborted(%%)\n");
32243224
VTR_LOG(
3225-
"------------------ ----------------- --------------- -------------- -------------- ------------ \n");
3225+
"------------------ ----------------- ---------------- ---------------- --------------- ------------ \n");
32263226

32273227
float total_moves = 0;
32283228
for (size_t iaction = 0; iaction < move_type_stat.blk_type_moves.size(); iaction++) {
@@ -3258,7 +3258,7 @@ static void print_placement_move_types_stats(
32583258
VTR_LOG(" ");
32593259
}
32603260
VTR_LOG(
3261-
" %-21.20s %-15.6f %-12.2f %-14.2f %-13.2f\n",
3261+
" %-22.20s %-16.2f %-15.2f %-14.2f %-13.2f\n",
32623262
move_name.c_str(), 100 * moves / total_moves,
32633263
100 * accepted / moves, 100 * rejected / moves,
32643264
100 * aborted / moves);

0 commit comments

Comments
 (0)