gatemate: remove placement density restriction (#1527)

This commit is contained in:
Lofty 2025-08-08 16:02:56 +01:00 committed by GitHub
parent 0be6173064
commit 0ad43e6ec7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -382,7 +382,7 @@ po::options_description CommandHandler::getGeneralOptions()
"disable printing of the line numbers associated with each net in the critical path");
general.add_options()("placer-heap-alpha", po::value<float>(), "placer heap alpha value (float, default: 0.1)");
general.add_options()("placer-heap-beta", po::value<float>(), "placer heap beta value (float, default: 0.9)");
general.add_options()("placer-heap-beta", po::value<float>(), "placer heap maximum placement density (float, default: 0.9)");
general.add_options()("placer-heap-critexp", po::value<int>(),
"placer heap criticality exponent (int, default: 2)");
general.add_options()("placer-heap-timingweight", po::value<int>(), "placer heap timing weight (int, default: 10)");

View File

@ -202,7 +202,6 @@ void GateMateImpl::postRoute()
void GateMateImpl::configurePlacerHeap(PlacerHeapCfg &cfg)
{
cfg.beta = 0.5;
cfg.placeAllAtOnce = true;
}