File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3215,14 +3215,14 @@ static void print_placement_move_types_stats(
3215
3215
const MoveTypeStat& move_type_stat) {
3216
3216
float moves, accepted, rejected, aborted;
3217
3217
3218
- VTR_LOG (" \n\n Percentage of different move types and block types: \n " );
3218
+ VTR_LOG (" \n\n Placement perturbation distribution by block and move type: \n " );
3219
3219
3220
3220
VTR_LOG (
3221
- " ------------------ ----------------- --------------- -------------- -------------- ------------ \n " );
3221
+ " ------------------ ----------------- ---------------- ---------------- - -------------- ------------ \n " );
3222
3222
VTR_LOG (
3223
- " Block Type Move Type Percentage (%%) Acceptance (%%) Rejection (%%) Aborted(%%)\n " );
3223
+ " Block Type Move Type (%%) of Total Accepted (%%) Rejected (%%) Aborted(%%)\n " );
3224
3224
VTR_LOG (
3225
- " ------------------ ----------------- --------------- -------------- -------------- ------------ \n " );
3225
+ " ------------------ ----------------- ---------------- ---------------- - -------------- ------------ \n " );
3226
3226
3227
3227
float total_moves = 0 ;
3228
3228
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(
3258
3258
VTR_LOG (" " );
3259
3259
}
3260
3260
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 " ,
3262
3262
move_name.c_str (), 100 * moves / total_moves,
3263
3263
100 * accepted / moves, 100 * rejected / moves,
3264
3264
100 * aborted / moves);
You can’t perform that action at this time.
0 commit comments