summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2020-01-10 17:44:48 +0200
committerAlan Mishchenko <alanmi@berkeley.edu>2020-01-10 17:44:48 +0200
commit1bb50384d1b89e701afdfff00d91ea3903d5fa92 (patch)
tree58853df3885ac2e3ba47a52d42e279a2587bbc3a /src/base/abci/abc.c
parent144c5be8246800d5bd36dc3e177364063e8d2e40 (diff)
downloadabc-1bb50384d1b89e701afdfff00d91ea3903d5fa92.tar.gz
abc-1bb50384d1b89e701afdfff00d91ea3903d5fa92.tar.bz2
abc-1bb50384d1b89e701afdfff00d91ea3903d5fa92.zip
Improving performance of 'lutpack'.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 5df604cc..09b27b36 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -4898,7 +4898,7 @@ int Abc_CommandLutpack( Abc_Frame_t * pAbc, int argc, char ** argv )
}
pPars->nLutsMax = atoi(argv[globalUtilOptind]);
globalUtilOptind++;
- if ( pPars->nLutsMax < 2 || pPars->nLutsMax > 8 )
+ if ( pPars->nLutsMax < 2 || pPars->nLutsMax > 16 )
goto usage;
break;
case 'Q':
@@ -4988,7 +4988,7 @@ usage:
Abc_Print( -2, "\t performs \"rewriting\" for LUT network;\n" );
Abc_Print( -2, "\t determines LUT size as the max fanin count of a node;\n" );
Abc_Print( -2, "\t if the network is not LUT-mapped, packs it into 6-LUTs\n" );
- Abc_Print( -2, "\t (there is another command for resynthesis after LUT mapping, \"imfs\")\n" );
+ Abc_Print( -2, "\t (there is another command for resynthesis after LUT mapping, \"mfs2\")\n" );
Abc_Print( -2, "\t-N <num> : the max number of LUTs in the structure (2 <= num) [default = %d]\n", pPars->nLutsMax );
Abc_Print( -2, "\t-Q <num> : the max number of LUTs not in MFFC (0 <= num) [default = %d]\n", pPars->nLutsOver );
Abc_Print( -2, "\t-S <num> : the max number of LUT inputs shared (0 <= num <= 3) [default = %d]\n", pPars->nVarsShared );