1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-02-19 05:57:33 +00:00

Merge pull request #936 from whitequark/wasm-no-parallel-refine

Add missing part of PR #933
This commit is contained in:
gatecat
2022-03-08 18:47:00 +00:00
committed by GitHub

View File

@@ -347,11 +347,14 @@ class HeAPPlacer
ctx->check();
lock.unlock_early();
#if !defined(__wasm)
if (cfg.parallelRefine) {
if (!parallel_refine(ctx, ParallelRefineCfg(ctx))) {
return false;
}
} else {
} else
#endif
{
if (!placer1_refine(ctx, Placer1Cfg(ctx))) {
return false;
}