diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-09-07 18:49:32 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-09-07 18:49:32 -0700 |
commit | 520150959753523078a4e5c9acce55cd45714ce9 (patch) | |
tree | 57ac9ff991cccb8035ce92aba93dda2b9ac23bbb /src/base/abci/abc.c | |
parent | 2a39b635eb61be45f10f5bcd8fdfdf4289ef678f (diff) | |
download | abc-520150959753523078a4e5c9acce55cd45714ce9.tar.gz abc-520150959753523078a4e5c9acce55cd45714ce9.tar.bz2 abc-520150959753523078a4e5c9acce55cd45714ce9.zip |
Improvements to the new technology mapper.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r-- | src/base/abci/abc.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index d291b191..9162f548 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -29825,7 +29825,7 @@ int Abc_CommandAbc9Jf( Abc_Frame_t * pAbc, int argc, char ** argv ) int c; Jf_ManSetDefaultPars( pPars ); Extra_UtilGetoptReset(); - while ( ( c = Extra_UtilGetopt( argc, argv, "KCRDavwh" ) ) != EOF ) + while ( ( c = Extra_UtilGetopt( argc, argv, "KCRDacvwh" ) ) != EOF ) { switch ( c ) { @@ -29882,6 +29882,9 @@ int Abc_CommandAbc9Jf( Abc_Frame_t * pAbc, int argc, char ** argv ) case 'a': pPars->fAreaOnly ^= 1; break; + case 'c': + pPars->fCoarsen ^= 1; + break; case 'v': pPars->fVerbose ^= 1; break; @@ -29907,13 +29910,14 @@ usage: sprintf(Buffer, "best possible" ); else sprintf(Buffer, "%d", pPars->DelayTarget ); - Abc_Print( -2, "usage: &jf [-KCRD num] [-avwh]\n" ); + Abc_Print( -2, "usage: &jf [-KCRD num] [-acvwh]\n" ); Abc_Print( -2, "\t performs technology mapping of the network\n" ); Abc_Print( -2, "\t-K num : LUT size for the mapping (2 <= K <= %d) [default = %d]\n", pPars->nLutSizeMax, pPars->nLutSize ); Abc_Print( -2, "\t-C num : the max number of priority cuts (1 <= C <= %d) [default = %d]\n", pPars->nCutNumMax, pPars->nCutNum ); Abc_Print( -2, "\t-R num : the number of mapping rounds [default = %d]\n", pPars->nRounds ); Abc_Print( -2, "\t-D num : sets the delay constraint for the mapping [default = %s]\n", Buffer ); Abc_Print( -2, "\t-a : toggles area-oriented mapping [default = %s]\n", pPars->fAreaOnly? "yes": "no" ); + Abc_Print( -2, "\t-c : toggles coarsening the subject graph [default = %s]\n", pPars->fCoarsen? "yes": "no" ); Abc_Print( -2, "\t-v : toggles verbose output [default = %s]\n", pPars->fVerbose? "yes": "no" ); Abc_Print( -2, "\t-w : toggles very verbose output [default = %s]\n", pPars->fVeryVerbose? "yes": "no" ); Abc_Print( -2, "\t-h : prints the command usage\n"); |