diff options
author | gatecat <gatecat@ds0.me> | 2022-03-03 21:53:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 21:53:26 +0000 |
commit | 2c6ca4836fd30faa5cdbd931a352866e5a04104d (patch) | |
tree | 50c2c44d8ee36cfbcb765b04912ee8fb678248d9 /common/placer_heap.cc | |
parent | 0a70b9c992c06a7553725b3742052eb95abd5f20 (diff) | |
parent | cc9f99a80c9aa9b69bc2a54060b5fbcec799f145 (diff) | |
download | nextpnr-2c6ca4836fd30faa5cdbd931a352866e5a04104d.tar.gz nextpnr-2c6ca4836fd30faa5cdbd931a352866e5a04104d.tar.bz2 nextpnr-2c6ca4836fd30faa5cdbd931a352866e5a04104d.zip |
Merge pull request #929 from gatecat/gatecat/parallel_refine
parallel_refine: New, parallelised placement refinement pass
Diffstat (limited to 'common/placer_heap.cc')
-rw-r--r-- | common/placer_heap.cc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/common/placer_heap.cc b/common/placer_heap.cc index 5b43dc72..5ffb7642 100644 --- a/common/placer_heap.cc +++ b/common/placer_heap.cc @@ -46,6 +46,7 @@ #include "fast_bels.h" #include "log.h" #include "nextpnr.h" +#include "parallel_refine.h" #include "place_common.h" #include "placer1.h" #include "scope_lock.h" @@ -346,8 +347,14 @@ class HeAPPlacer ctx->check(); lock.unlock_early(); - if (!placer1_refine(ctx, Placer1Cfg(ctx))) { - return false; + if (cfg.parallelRefine) { + if (!parallel_refine(ctx, ParallelRefineCfg(ctx))) { + return false; + } + } else { + if (!placer1_refine(ctx, Placer1Cfg(ctx))) { + return false; + } } return true; @@ -1786,6 +1793,8 @@ PlacerHeapCfg::PlacerHeapCfg(Context *ctx) beta = ctx->setting<float>("placerHeap/beta"); criticalityExponent = ctx->setting<int>("placerHeap/criticalityExponent"); timingWeight = ctx->setting<int>("placerHeap/timingWeight"); + parallelRefine = ctx->setting<bool>("placerHeap/parallelRefine", false); + timing_driven = ctx->setting<bool>("timing_driven"); solverTolerance = 1e-5; placeAllAtOnce = false; |