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:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user