You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In several of our key benchmarks (BOOM, Rocket...), we have a high percentage of cells using buses.
I mean, we do xor or and for a bus not a single bit wire. Checking BOOM, over 10% of the gates
are for buses, since they are multibit, if I flatten the number of gates more than doubles. We could "flatten" the wire to use mockturle bit representation, but it is an unnecessary overhead. Also, different bits can have slightly different (but equally good) results break symmetry.
Do you have anything on the plan to handle buses? (notice, this is not the same as nary functions that you have)
The text was updated successfully, but these errors were encountered:
In several of our key benchmarks (BOOM, Rocket...), we have a high percentage of cells using buses.
I mean, we do xor or and for a bus not a single bit wire. Checking BOOM, over 10% of the gates
are for buses, since they are multibit, if I flatten the number of gates more than doubles. We could "flatten" the wire to use mockturle bit representation, but it is an unnecessary overhead. Also, different bits can have slightly different (but equally good) results break symmetry.
Do you have anything on the plan to handle buses? (notice, this is not the same as nary functions that you have)
The text was updated successfully, but these errors were encountered: