From f9261661c286d584faecd4b803b1522191c855d7 Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Tue, 12 May 2026 01:30:38 -0700 Subject: [PATCH] Reduce max_bits for opt_boundary --- passes/silimate/opt_boundary.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passes/silimate/opt_boundary.cc b/passes/silimate/opt_boundary.cc index 5fc7b50b2..c9462fe30 100644 --- a/passes/silimate/opt_boundary.cc +++ b/passes/silimate/opt_boundary.cc @@ -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++) {