1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-01-31 05:52:32 +00:00

HeAP: Skip high-strength cells in both cell loops.

Previously only the first loop skipped cells with high belStrength,
but they can't be processed by the second loop either, so skip them
there too.
This commit is contained in:
Adam Greig
2021-04-12 13:42:20 +01:00
parent fc15105643
commit 2fdf41ac01

View File

@@ -1322,6 +1322,10 @@ class HeAPPlacer
continue;
}
if (cell.belStrength > STRENGTH_STRONG) {
continue;
}
// Transfer chain extents to the actual chains structure
ChainExtent *ce = nullptr;
if (p->chain_root.count(cell_name)) {