3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-24 01:25:33 +00:00

Reduce fanout limit to 256

This commit is contained in:
Akash Levy 2024-11-11 17:17:25 -08:00
parent 5e364599be
commit ddbad572dc

View file

@ -371,7 +371,7 @@ struct MuxpackPass : public Pass {
extra_args(args, argidx, design);
if (splitfanout)
Pass::call(design, "splitfanout -limit 512 t:$mux t:$pmux");
Pass::call(design, "splitfanout -limit 256 t:$mux t:$pmux");
int mux_count = 0;
int pmux_count = 0;