aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/main.cc
diff options
context:
space:
mode:
authorEddie Hung <eddieh@ece.ubc.ca>2018-08-03 23:43:53 -0700
committerEddie Hung <eddieh@ece.ubc.ca>2018-08-03 23:43:53 -0700
commitd66edf522348d1475f1b65d79804f37a751274b3 (patch)
tree4b881ed0409bae10ac553dc5fe1771feb228712e /ice40/main.cc
parent3d5dcda12c80175f5bfb2c2615de9cb5fadacb90 (diff)
parent65d73eb9838e0bb8e6d089ecde3d4ffaf34e9e29 (diff)
downloadnextpnr-d66edf522348d1475f1b65d79804f37a751274b3.tar.gz
nextpnr-d66edf522348d1475f1b65d79804f37a751274b3.tar.bz2
nextpnr-d66edf522348d1475f1b65d79804f37a751274b3.zip
Merge branch 'master' into slack_redist_freq
Diffstat (limited to 'ice40/main.cc')
-rw-r--r--ice40/main.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/ice40/main.cc b/ice40/main.cc
index 2d8e3099..46cdce71 100644
--- a/ice40/main.cc
+++ b/ice40/main.cc
@@ -40,7 +40,6 @@
#include "log.h"
#include "nextpnr.h"
#include "pcf.h"
-#include "place_legaliser.h"
#include "timing.h"
#include "version.h"
@@ -107,6 +106,9 @@ int main(int argc, char *argv[])
options.add_options()("seed", po::value<int>(), "seed value for random number generator");
options.add_options()("slack_redist_iter", po::value<int>(),
"number of iterations between slack redistribution");
+ options.add_options()("cstrweight", po::value<float>(),
+ "placer weighting for relative constraint satisfaction");
+
options.add_options()("version,V", "show version");
options.add_options()("tmfuzz", "run path delay estimate fuzzer");
options.add_options()("test", "check architecture database integrity");
@@ -326,6 +328,10 @@ int main(int argc, char *argv[])
}
}
+ if (vm.count("cstrweight")) {
+ ctx->placer_constraintWeight = vm["cstrweight"].as<float>();
+ }
+
if (vm.count("svg")) {
std::cout << "<svg xmlns=\"http://www.w3.org/2000/svg\" "
"xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n";