3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-15 11:45:41 +00:00

Reduce max_bits for opt_boundary

This commit is contained in:
Akash Levy 2026-05-12 01:30:38 -07:00
parent 1cc35aa76d
commit f9261661c2

View file

@ -270,7 +270,7 @@ struct OptBoundaryPass : Pass {
log_header(design, "Executing OPT_BOUNDARY pass.\n");
int max_cells = 8;
int max_bits = 16384;
int max_bits = 4096;
bool no_disconnect = false;
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) {