diff options
author | gatecat <gatecat@ds0.me> | 2021-04-25 12:46:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-25 12:46:14 +0100 |
commit | b7bf7c11a841adeb6e9f4ca7364cbb63367be962 (patch) | |
tree | ad96d7607f3eb11a15ec4594673746fcab6e96da /nexus | |
parent | 3fd1ee7757356660c7f440705553d345837eaed5 (diff) | |
parent | 0abe425675ae0cc550194171f1f15ec4058a05d6 (diff) | |
download | nextpnr-b7bf7c11a841adeb6e9f4ca7364cbb63367be962.tar.gz nextpnr-b7bf7c11a841adeb6e9f4ca7364cbb63367be962.tar.bz2 nextpnr-b7bf7c11a841adeb6e9f4ca7364cbb63367be962.zip |
Merge pull request #685 from YosysHQ/gatecat/nexus-routing
nexus: Enable placeAllAtOnce
Diffstat (limited to 'nexus')
-rw-r--r-- | nexus/arch.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nexus/arch.cc b/nexus/arch.cc index f804cdd9..08a9a4c2 100644 --- a/nexus/arch.cc +++ b/nexus/arch.cc @@ -632,10 +632,7 @@ bool Arch::place() cfg.ioBufTypes.insert(id_SEIO33_CORE); cfg.ioBufTypes.insert(id_SEIO18_CORE); cfg.ioBufTypes.insert(id_OSC_CORE); - cfg.cellGroups.emplace_back(); - cfg.cellGroups.back().insert({id_OXIDE_COMB}); - cfg.cellGroups.back().insert({id_OXIDE_FF}); - + cfg.placeAllAtOnce = true; cfg.beta = 0.5; cfg.criticalityExponent = 7; if (!placer_heap(getCtx(), cfg)) |