mirror of https://github.com/YosysHQ/nextpnr.git
gatemate: remove placement density restriction (#1527)
This commit is contained in:
parent
0be6173064
commit
0ad43e6ec7
|
|
@ -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)");
|
||||
|
|
|
|||
|
|
@ -202,7 +202,6 @@ void GateMateImpl::postRoute()
|
|||
|
||||
void GateMateImpl::configurePlacerHeap(PlacerHeapCfg &cfg)
|
||||
{
|
||||
cfg.beta = 0.5;
|
||||
cfg.placeAllAtOnce = true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue