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 731e101 commit f733220Copy full SHA for f733220
vpr/src/place/placer.cpp
@@ -285,15 +285,15 @@ int Placer::check_placement_costs_() {
285
void Placer::place() {
286
const auto& timing_ctx = g_vpr_ctx.timing();
287
const auto& cluster_ctx = g_vpr_ctx.clustering();
288
-
+ bool analytic_place_enabled = false;
289
#ifdef ENABLE_ANALYTIC_PLACE
290
// Cluster-level analytic placer: when enabled, skip most of the annealing and go straight to quench
291
if (placer_opts_.enable_analytic_placer) {
292
- skip_anneal_ = true;
+ analytic_place_enabled = true;
293
}
294
#endif
295
296
- if (!skip_anneal_) {
+ if (!analytic_place_enabled && !skip_anneal_) {
297
// Table header
298
log_printer_.print_place_status_header();
299
0 commit comments