aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/arch.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2019-06-21 10:20:46 +0100
committerDavid Shah <dave@ds0.me>2019-06-21 10:20:46 +0100
commit7ae64b9477aa98f8f76c3fd23eb9f551758b0d6b (patch)
tree12603b17b55f65e04d9a3a92bbbbe83d9445aa5e /ecp5/arch.cc
parent29adacf18eaaad7e38ec5b2dd9d1f6ccf9c70c18 (diff)
downloadnextpnr-7ae64b9477aa98f8f76c3fd23eb9f551758b0d6b.tar.gz
nextpnr-7ae64b9477aa98f8f76c3fd23eb9f551758b0d6b.tar.bz2
nextpnr-7ae64b9477aa98f8f76c3fd23eb9f551758b0d6b.zip
ecp5: Reduce cfg.criticalityExponent for now
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'ecp5/arch.cc')
-rw-r--r--ecp5/arch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc
index 9da8abdf..a27b0860 100644
--- a/ecp5/arch.cc
+++ b/ecp5/arch.cc
@@ -512,7 +512,7 @@ bool Arch::place()
if (placer == "heap") {
PlacerHeapCfg cfg(getCtx());
- cfg.criticalityExponent = 7;
+ cfg.criticalityExponent = 4;
cfg.ioBufTypes.insert(id_TRELLIS_IO);
if (!placer_heap(getCtx(), cfg))
return false;