mirror of https://github.com/YosysHQ/abc.git
Adding switch to dsd_match to skip small functions.
This commit is contained in:
parent
67247b7209
commit
21922e3e9f
|
|
@ -19704,10 +19704,10 @@ usage:
|
|||
int Abc_CommandDsdMatch( Abc_Frame_t * pAbc, int argc, char ** argv )
|
||||
{
|
||||
char * pStruct = NULL;
|
||||
int c, fVerbose = 0, fFast = 0, fAdd = 0, fSpec = 0, LutSize = 0, nConfls = 10000, nProcs = 1;
|
||||
int c, fVerbose = 0, fFast = 0, fAdd = 0, fSpec = 0, LutSize = 0, nConfls = 10000, nProcs = 1, nInputs = 0;
|
||||
If_DsdMan_t * pDsdMan = (If_DsdMan_t *)Abc_FrameReadManDsd();
|
||||
Extra_UtilGetoptReset();
|
||||
while ( ( c = Extra_UtilGetopt( argc, argv, "KCPSfasvh" ) ) != EOF )
|
||||
while ( ( c = Extra_UtilGetopt( argc, argv, "KCPISfasvh" ) ) != EOF )
|
||||
{
|
||||
switch ( c )
|
||||
{
|
||||
|
|
@ -19740,6 +19740,15 @@ int Abc_CommandDsdMatch( Abc_Frame_t * pAbc, int argc, char ** argv )
|
|||
nProcs = atoi(argv[globalUtilOptind]);
|
||||
globalUtilOptind++;
|
||||
break;
|
||||
case 'I':
|
||||
if ( globalUtilOptind >= argc )
|
||||
{
|
||||
Abc_Print( -1, "Command line switch \"-I\" should be followed by a floating point number.\n" );
|
||||
goto usage;
|
||||
}
|
||||
nInputs = atoi(argv[globalUtilOptind]);
|
||||
globalUtilOptind++;
|
||||
break;
|
||||
case 'S':
|
||||
if ( globalUtilOptind >= argc )
|
||||
{
|
||||
|
|
@ -19780,18 +19789,19 @@ int Abc_CommandDsdMatch( Abc_Frame_t * pAbc, int argc, char ** argv )
|
|||
Abc_Print( -1, "DSD manager matched with cell %s should be cleaned by \"dsd_filter -m\" before matching with cell %s.\n", pStructCur, pStruct );
|
||||
return 0;
|
||||
}
|
||||
Id_DsdManTuneStr( pDsdMan, pStruct, nConfls, nProcs, fVerbose );
|
||||
Id_DsdManTuneStr( pDsdMan, pStruct, nConfls, nProcs, nInputs, fVerbose );
|
||||
}
|
||||
else
|
||||
If_DsdManTune( pDsdMan, LutSize, fFast, fAdd, fSpec, fVerbose );
|
||||
return 0;
|
||||
|
||||
usage:
|
||||
Abc_Print( -2, "usage: dsd_match [-KCP num] [-fasvh] [-S str]\n" );
|
||||
Abc_Print( -2, "usage: dsd_match [-KCPI num] [-fasvh] [-S str]\n" );
|
||||
Abc_Print( -2, "\t matches DSD structures with the given cell\n" );
|
||||
Abc_Print( -2, "\t-K num : LUT size used for tuning [default = %d]\n", LutSize );
|
||||
Abc_Print( -2, "\t-C num : the maximum number of conflicts [default = %d]\n", nConfls );
|
||||
Abc_Print( -2, "\t-P num : the maximum number of processes [default = %d]\n", nProcs );
|
||||
Abc_Print( -2, "\t-I num : skip checking if support is less than this [default = %d]\n", nInputs );
|
||||
Abc_Print( -2, "\t-f : toggles using fast check [default = %s]\n", fFast? "yes": "no" );
|
||||
Abc_Print( -2, "\t-a : toggles adding tuning to the current one [default = %s]\n", fAdd? "yes": "no" );
|
||||
Abc_Print( -2, "\t-s : toggles using specialized check [default = %s]\n", fSpec? "yes": "no" );
|
||||
|
|
@ -44186,7 +44196,7 @@ int Abc_CommandAbc9Cone( Abc_Frame_t * pAbc, int argc, char ** argv )
|
|||
}
|
||||
nRegs = Gia_ManRegNum( pAbc->pGia );
|
||||
if ( fComb )
|
||||
Gia_ManSetRegNum( pAbc->pGia, 0 );
|
||||
pAbc->pGia->nRegs = 0;
|
||||
if ( iOutNum < 0 || iOutNum + nOutRange > Gia_ManPoNum(pAbc->pGia) )
|
||||
{
|
||||
Abc_Print( -1, "Abc_CommandAbc9Cone(): Range of outputs to extract is incorrect.\n" );
|
||||
|
|
|
|||
|
|
@ -459,7 +459,7 @@ FILE * CmdFileOpen( Abc_Frame_t * pAbc, char *sFileName, char *sMode, char **pFi
|
|||
else
|
||||
{
|
||||
// print the path/name of the resource file 'abc.rc' that is being loaded
|
||||
if ( !silent && strlen(sRealName) >= 6 && strcmp( sRealName + strlen(sRealName) - 6, "abc.rc" ) == 0 )
|
||||
if ( !silent && strlen(sRealName) >= 6 && strcmp( sRealName + strlen(sRealName) - 6, "abc.rc" ) == 0 )
|
||||
Abc_Print( 1, "Loading resource file \"%s\".\n", sRealName );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2733,6 +2733,7 @@ Gia_Man_t * Rtl_LibCollapse( Rtl_Lib_t * p, char * pTopModule, int fVerbose )
|
|||
Vec_IntPush( vRoots, iNtk );
|
||||
Rtl_LibBlast2( p, vRoots, 1 );
|
||||
pGia = Gia_ManDup( pTop->pGia );
|
||||
//Gia_AigerWrite( pGia, "temp_miter.aig", 0, 0, 0 );
|
||||
if ( pTop->pGia->vBarBufs )
|
||||
pGia->vBarBufs = Vec_IntDup( pTop->pGia->vBarBufs );
|
||||
printf( "Derived global AIG for the top module \"%s\". ", Rtl_NtkStr(pTop, NameId) );
|
||||
|
|
|
|||
|
|
@ -564,7 +564,7 @@ extern If_DsdMan_t * If_DsdManAlloc( int nVars, int nLutSize );
|
|||
extern void If_DsdManAllocIsops( If_DsdMan_t * p, int nLutSize );
|
||||
extern void If_DsdManPrint( If_DsdMan_t * p, char * pFileName, int Number, int Support, int fOccurs, int fTtDump, int fVerbose );
|
||||
extern void If_DsdManTune( If_DsdMan_t * p, int LutSize, int fFast, int fAdd, int fSpec, int fVerbose );
|
||||
extern void Id_DsdManTuneStr( If_DsdMan_t * p, char * pStruct, int nConfls, int nProcs, int fVerbose );
|
||||
extern void Id_DsdManTuneStr( If_DsdMan_t * p, char * pStruct, int nConfls, int nProcs, int nInputs, int fVerbose );
|
||||
extern void If_DsdManFree( If_DsdMan_t * p, int fVerbose );
|
||||
extern void If_DsdManSave( If_DsdMan_t * p, char * pFileName );
|
||||
extern If_DsdMan_t * If_DsdManLoad( char * pFileName );
|
||||
|
|
|
|||
|
|
@ -2554,7 +2554,7 @@ void Id_DsdManTuneStr1( If_DsdMan_t * p, char * pStruct, int nConfls, int fVerbo
|
|||
|
||||
***********************************************************************/
|
||||
#ifndef ABC_USE_PTHREADS
|
||||
void Id_DsdManTuneStr( If_DsdMan_t * p, char * pStruct, int nConfls, int nProcs, int fVerbose )
|
||||
void Id_DsdManTuneStr( If_DsdMan_t * p, char * pStruct, int nConfls, int nProcs, int nInputs, int fVerbose )
|
||||
{
|
||||
Id_DsdManTuneStr1( p, pStruct, nConfls, fVerbose );
|
||||
}
|
||||
|
|
@ -2600,7 +2600,7 @@ void * Ifn_WorkerThread( void * pArg )
|
|||
assert( 0 );
|
||||
return NULL;
|
||||
}
|
||||
void Id_DsdManTuneStr( If_DsdMan_t * p, char * pStruct, int nConfls, int nProcs, int fVerbose )
|
||||
void Id_DsdManTuneStr( If_DsdMan_t * p, char * pStruct, int nConfls, int nProcs, int nInputs, int fVerbose )
|
||||
{
|
||||
int fVeryVerbose = 0;
|
||||
ProgressBar * pProgress = NULL;
|
||||
|
|
@ -2703,8 +2703,8 @@ void Id_DsdManTuneStr( If_DsdMan_t * p, char * pStruct, int nConfls, int nProcs,
|
|||
Extra_ProgressBarUpdate( pProgress, k, NULL );
|
||||
pObj = If_DsdVecObj( &p->vObjs, k );
|
||||
nVars = If_DsdObjSuppSize(pObj);
|
||||
//if ( nVars <= LutSize )
|
||||
// continue;
|
||||
if ( nInputs && nVars < nInputs )
|
||||
continue;
|
||||
clk = Abc_Clock();
|
||||
If_DsdManComputeTruthPtr( p, Abc_Var2Lit(k, 0), NULL, ThData[i].pTruth );
|
||||
clkUsed += Abc_Clock() - clk;
|
||||
|
|
|
|||
Loading…
Reference in New Issue