Skip to content

Commit

Permalink
Reduce fanout limit to 256
Browse files Browse the repository at this point in the history
  • Loading branch information
akashlevy committed Nov 12, 2024
1 parent 5e36459 commit ddbad57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion passes/opt/muxpack.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ddbad57

Please sign in to comment.