Merge pull request #612 from YosysHQ/gatecat/router2-bb-fix
router2: Fix vast perf drop when leaving bounding box
This commit is contained in:
commit
e1534e1dec
@ -640,7 +640,7 @@ struct Router2
|
||||
bool debug_arc = /*usr.cell->type.str(ctx).find("RAMB") != std::string::npos && (usr.port ==
|
||||
ctx->id("ADDRATIEHIGH0") || usr.port == ctx->id("ADDRARDADDRL0"))*/
|
||||
false;
|
||||
while (!t.queue.empty() && (!is_bb || iter < toexplore)) {
|
||||
while (!t.queue.empty() && iter < toexplore) {
|
||||
auto curr = t.queue.top();
|
||||
auto &d = flat_wires.at(curr.wire);
|
||||
t.queue.pop();
|
||||
|
Loading…
Reference in New Issue
Block a user