mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-15 11:45:41 +00:00
Changed min cone size
This commit is contained in:
parent
2ab89e1146
commit
90dbb91cae
1 changed files with 1 additions and 1 deletions
|
|
@ -346,7 +346,7 @@ struct InferCeWorker
|
|||
int cone_size = (int)cone.size();
|
||||
|
||||
// Skip registers with trivial cones (not worth gating) or huge cones (too expensive)
|
||||
const int MIN_CONE_SIZE = 5;
|
||||
const int MIN_CONE_SIZE = 2;
|
||||
const int MAX_CONE_SIZE = 500;
|
||||
if (cone_size < MIN_CONE_SIZE || cone_size > MAX_CONE_SIZE)
|
||||
return {{}, false, cone_size};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue