aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2018-12-06 11:00:16 +0000
committerDavid Shah <dave@ds0.me>2018-12-06 11:00:16 +0000
commitb732e42fa312b83bee6c122d69e0a171afca779c (patch)
tree815411cd154d3b5a36a832a98f7c1c9284700dc9 /ice40/arch.cc
parent56dfd5564a2581bcb04a927cfc3161acae662064 (diff)
downloadnextpnr-b732e42fa312b83bee6c122d69e0a171afca779c.tar.gz
nextpnr-b732e42fa312b83bee6c122d69e0a171afca779c.tar.bz2
nextpnr-b732e42fa312b83bee6c122d69e0a171afca779c.zip
timing_opt: Reduce iterations to 30, tidy up logging
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'ice40/arch.cc')
-rw-r--r--ice40/arch.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc
index 9dbc78bb..8f52987c 100644
--- a/ice40/arch.cc
+++ b/ice40/arch.cc
@@ -631,14 +631,13 @@ bool Arch::place()
{
if (!placer1(getCtx(), Placer1Cfg(getCtx())))
return false;
- if(bool_or_default(settings, id("opt_timing"), false)) {
+ if (bool_or_default(settings, id("opt_timing"), false)) {
TimingOptCfg tocfg(getCtx());
tocfg.cellTypes.insert(id_ICESTORM_LC);
return timing_opt(getCtx(), tocfg);
} else {
return true;
}
-
}
bool Arch::route() { return router1(getCtx(), Router1Cfg(getCtx())); }