mirror of https://github.com/YosysHQ/yosys.git
Changed min cone size
This commit is contained in:
parent
2ab89e1146
commit
90dbb91cae
|
|
@ -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…
Reference in New Issue