aboutsummaryrefslogtreecommitdiffstats
path: root/common/kernel
diff options
context:
space:
mode:
authorArjen Roodselaar <arjen@oxide.computer>2022-12-20 13:10:37 -0800
committerArjen Roodselaar <arjen@oxide.computer>2022-12-20 13:10:37 -0800
commitbe1f700b0b3099dd7762bf8cbe23ecca4b77fe5b (patch)
treef7417121130cac5fd44671a440a4dbaf2fb6e9ea /common/kernel
parent923458a2c90ee295cf6502a83ca6182d1d281f48 (diff)
downloadnextpnr-be1f700b0b3099dd7762bf8cbe23ecca4b77fe5b.tar.gz
nextpnr-be1f700b0b3099dd7762bf8cbe23ecca4b77fe5b.tar.bz2
nextpnr-be1f700b0b3099dd7762bf8cbe23ecca4b77fe5b.zip
Set divisor instead of absolute value
Diffstat (limited to 'common/kernel')
-rw-r--r--common/kernel/command.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/kernel/command.cc b/common/kernel/command.cc
index 6d2dc939..65aa0299 100644
--- a/common/kernel/command.cc
+++ b/common/kernel/command.cc
@@ -190,7 +190,7 @@ po::options_description CommandHandler::getGeneralOptions()
"placer heap criticality exponent (int, default: 2)");
general.add_options()("placer-heap-timingweight", po::value<int>(), "placer heap timing weight (int, default: 10)");
general.add_options()("placer-heap-cell-placement-timeout", po::value<int>(),
- "allow placer to attempt up to the given number of iterations to place the cell (int, default: design size^2 / 8, 0 for no timeout)");
+ "allow placer to attempt up to max(10000, total cells^2 / N) iterations to place a cell (int N, default: 8, 0 for no timeout)");
#if !defined(__wasm)
general.add_options()("parallel-refine", "use new experimental parallelised engine for placement refinement");