From 36595c5486a1844fae899c35735b89a7ca538032 Mon Sep 17 00:00:00 2001 From: gatecat Date: Mon, 11 May 2026 12:25:41 +0200 Subject: [PATCH] static: Disable dark nodes for now Signed-off-by: gatecat --- common/place/placer_static.cc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/common/place/placer_static.cc b/common/place/placer_static.cc index f7e62d59..c577f55d 100644 --- a/common/place/placer_static.cc +++ b/common/place/placer_static.cc @@ -1203,6 +1203,13 @@ class StaticPlacer update_chains(); update_gradients(true); update_potentials(); + if (ctx->verbose) { + std::string pot_str = ""; + for (auto &g : groups) { + pot_str += stringf("%s%.0f", pot_str.empty() ? "" : ", ", g.curr_potential); + } + log_info(" potentials: [%s]\n", pot_str.c_str()); + } log_info(" system potential: %f hpwl: %f\n", system_potential(), system_hpwl()); compute_overlap(); if ((iter % 10) == 0) @@ -1558,7 +1565,7 @@ class StaticPlacer prepare_cells(); init_cells(); init_nets(); - insert_dark(); + // insert_dark(); insert_spacer(); prepare_density_bins();