Skip to content

Commit 7e9e587

Browse files
committed
[vpr][place] prrint number of moves per temp after getting the number
1 parent e6c296e commit 7e9e587

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vpr/src/place/annealer.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,8 @@ PlacementAnnealer::PlacementAnnealer(const t_placer_opts& placer_opts,
234234
}
235235

236236
int first_move_lim = get_place_inner_loop_num_move(placer_opts, placer_opts_.anneal_sched);
237+
238+
VTR_LOG("Moves per temperature: %d\n", first_move_lim);
237239

238240
if (placer_opts.inner_loop_recompute_divider != 0) {
239241
inner_recompute_limit_ = static_cast<int>(0.5 + (float)first_move_lim / (float)placer_opts.inner_loop_recompute_divider);

vpr/src/place/place_util.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ int get_place_inner_loop_num_move(const t_placer_opts& placer_opts, const t_anne
6868
/* Avoid having a non-positive move_lim */
6969
move_lim = std::max(move_lim, 1);
7070

71-
VTR_LOG("Moves per temperature: %d\n", move_lim);
72-
7371
return move_lim;
7472
}
7573

0 commit comments

Comments
 (0)