mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-17 04:34:47 +00:00
Add abc, some techmap passes, make opt_balance_tree only balance add/mul
This commit is contained in:
parent
6401027ff6
commit
b4d7812662
2 changed files with 7 additions and 5 deletions
|
@ -329,8 +329,10 @@ struct OptBalanceTreePass : public Pass {
|
|||
extra_args(args, argidx, design);
|
||||
|
||||
// Run splitfanout pass first
|
||||
if (splitfanout)
|
||||
Pass::call(design, "splitfanout -limit 512 t:$and t:$or t:$xor t:$xnor t:$add t:$mul");
|
||||
if (splitfanout) {
|
||||
// Pass::call(design, "splitfanout -limit 512 t:$and t:$or t:$xor t:$xnor t:$add t:$mul");
|
||||
Pass::call(design, "splitfanout -limit 512 t:$add t:$mul");
|
||||
}
|
||||
|
||||
// Count of all cells that were packed
|
||||
dict<IdString, int> cell_count;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue