mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-05 21:53:24 +00:00
opt_lut: Skip narrowing when connections are constrained
This commit is contained in:
parent
cee49aac94
commit
5be4727740
1 changed files with 6 additions and 0 deletions
|
@ -518,6 +518,12 @@ struct OptLutWorker
|
|||
}
|
||||
show_stats_by_arity();
|
||||
|
||||
if (!dlogic.empty()) {
|
||||
// We don't have handling for the constraints, so until then, disable
|
||||
// narrowing.
|
||||
log("Narrowing LUTs skipped: constraints in place.\n");
|
||||
return;
|
||||
}
|
||||
log("\n");
|
||||
log("Narrowing LUTs.\n");
|
||||
worklist = luts;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue