mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Added "opt -full" alias for all more aggressive optimizations
This commit is contained in:
parent
a21481b338
commit
ab28491f27
4 changed files with 35 additions and 9 deletions
|
@ -76,9 +76,11 @@ struct SynthPass : public Pass {
|
|||
log(" opt_clean\n");
|
||||
log("\n");
|
||||
log(" fine:\n");
|
||||
log(" opt -fast -full\n");
|
||||
log(" memory_map\n");
|
||||
log(" opt -full\n");
|
||||
log(" techmap\n");
|
||||
log(" opt -fast\n");
|
||||
log(" opt -fast -full\n");
|
||||
#ifdef YOSYS_ENABLE_ABC
|
||||
log(" abc -fast\n");
|
||||
log(" opt_clean\n");
|
||||
|
@ -144,9 +146,11 @@ struct SynthPass : public Pass {
|
|||
|
||||
if (check_label(active, run_from, run_to, "fine"))
|
||||
{
|
||||
Pass::call(design, "opt -fast -full");
|
||||
Pass::call(design, "memory_map");
|
||||
Pass::call(design, "opt -full");
|
||||
Pass::call(design, "techmap");
|
||||
Pass::call(design, "opt -fast");
|
||||
Pass::call(design, "opt -fast -full");
|
||||
#ifdef YOSYS_ENABLE_ABC
|
||||
Pass::call(design, "abc -fast");
|
||||
Pass::call(design, "opt_clean");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue