mirror of https://github.com/YosysHQ/abc.git
Updating &gla_refine to perform suffic refinement.
This commit is contained in:
parent
548e04192b
commit
5ca4f3cf9f
|
|
@ -287,6 +287,48 @@ Vec_Int_t * Gia_ManGetStateAndCheckCex( Gia_Man_t * pAig, Abc_Cex_t * p, int iFr
|
||||||
return vInit;
|
return vInit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**Function*************************************************************
|
||||||
|
|
||||||
|
Synopsis [Verify counter-example starting in the given timeframe.]
|
||||||
|
|
||||||
|
Description []
|
||||||
|
|
||||||
|
SideEffects []
|
||||||
|
|
||||||
|
SeeAlso []
|
||||||
|
|
||||||
|
***********************************************************************/
|
||||||
|
void Gia_ManCheckCex( Gia_Man_t * pAig, Abc_Cex_t * p, int iFrame )
|
||||||
|
{
|
||||||
|
Gia_Obj_t * pObj, * pObjRi, * pObjRo;
|
||||||
|
int RetValue, i, k, iBit = 0;
|
||||||
|
assert( iFrame >= 0 && iFrame <= p->iFrame );
|
||||||
|
Gia_ManCleanMark0(pAig);
|
||||||
|
Gia_ManForEachRo( pAig, pObj, i )
|
||||||
|
pObj->fMark0 = Abc_InfoHasBit(p->pData, iBit++);
|
||||||
|
for ( i = iFrame, iBit += Gia_ManPiNum(pAig) * iFrame; i <= p->iFrame; i++ )
|
||||||
|
{
|
||||||
|
Gia_ManForEachPi( pAig, pObj, k )
|
||||||
|
pObj->fMark0 = Abc_InfoHasBit(p->pData, iBit++);
|
||||||
|
Gia_ManForEachAnd( pAig, pObj, k )
|
||||||
|
pObj->fMark0 = (Gia_ObjFanin0(pObj)->fMark0 ^ Gia_ObjFaninC0(pObj)) &
|
||||||
|
(Gia_ObjFanin1(pObj)->fMark0 ^ Gia_ObjFaninC1(pObj));
|
||||||
|
Gia_ManForEachCo( pAig, pObj, k )
|
||||||
|
pObj->fMark0 = Gia_ObjFanin0(pObj)->fMark0 ^ Gia_ObjFaninC0(pObj);
|
||||||
|
if ( i == p->iFrame )
|
||||||
|
break;
|
||||||
|
Gia_ManForEachRiRo( pAig, pObjRi, pObjRo, k )
|
||||||
|
pObjRo->fMark0 = pObjRi->fMark0;
|
||||||
|
}
|
||||||
|
assert( iBit == p->nBits );
|
||||||
|
RetValue = Gia_ManPo(pAig, p->iPo)->fMark0;
|
||||||
|
Gia_ManCleanMark0(pAig);
|
||||||
|
if ( RetValue == 1 )
|
||||||
|
printf( "CEX holds for the transformed model.\n" );
|
||||||
|
else
|
||||||
|
printf( "CEX does not hold for the transformed model.\n" );
|
||||||
|
}
|
||||||
|
|
||||||
/**Function*************************************************************
|
/**Function*************************************************************
|
||||||
|
|
||||||
Synopsis []
|
Synopsis []
|
||||||
|
|
@ -300,11 +342,12 @@ Vec_Int_t * Gia_ManGetStateAndCheckCex( Gia_Man_t * pAig, Abc_Cex_t * p, int iFr
|
||||||
***********************************************************************/
|
***********************************************************************/
|
||||||
Gia_Man_t * Gia_ManTransformFlops( Gia_Man_t * p, Vec_Int_t * vFlops, Vec_Int_t * vInit )
|
Gia_Man_t * Gia_ManTransformFlops( Gia_Man_t * p, Vec_Int_t * vFlops, Vec_Int_t * vInit )
|
||||||
{
|
{
|
||||||
Vec_Int_t * vInitNew;
|
Vec_Bit_t * vInitNew;
|
||||||
Gia_Man_t * pNew;
|
Gia_Man_t * pNew;
|
||||||
Gia_Obj_t * pObj;
|
Gia_Obj_t * pObj;
|
||||||
int i, iFlopId;
|
int i, iFlopId;
|
||||||
vInitNew = Vec_IntStart( Gia_ManRegNum(p) );
|
assert( Vec_IntSize(vInit) == Vec_IntSize(vFlops) );
|
||||||
|
vInitNew = Vec_BitStart( Gia_ManRegNum(p) );
|
||||||
Gia_ManForEachObjVec( vFlops, p, pObj, i )
|
Gia_ManForEachObjVec( vFlops, p, pObj, i )
|
||||||
{
|
{
|
||||||
assert( Gia_ObjIsRo(p, pObj) );
|
assert( Gia_ObjIsRo(p, pObj) );
|
||||||
|
|
@ -312,10 +355,10 @@ Gia_Man_t * Gia_ManTransformFlops( Gia_Man_t * p, Vec_Int_t * vFlops, Vec_Int_t
|
||||||
continue;
|
continue;
|
||||||
iFlopId = Gia_ObjCioId(pObj) - Gia_ManPiNum(p);
|
iFlopId = Gia_ObjCioId(pObj) - Gia_ManPiNum(p);
|
||||||
assert( iFlopId >= 0 && iFlopId < Gia_ManRegNum(p) );
|
assert( iFlopId >= 0 && iFlopId < Gia_ManRegNum(p) );
|
||||||
Vec_IntWriteEntry( vInitNew, iFlopId, 1 );
|
Vec_BitWriteEntry( vInitNew, iFlopId, 1 );
|
||||||
}
|
}
|
||||||
pNew = Gia_ManDupFlip( p, Vec_IntArray(vInitNew) );
|
pNew = Gia_ManDupFlip( p, Vec_BitArray(vInitNew) );
|
||||||
Vec_IntFree( vInitNew );
|
Vec_BitFree( vInitNew );
|
||||||
return pNew;
|
return pNew;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -330,7 +373,7 @@ Gia_Man_t * Gia_ManTransformFlops( Gia_Man_t * p, Vec_Int_t * vFlops, Vec_Int_t
|
||||||
SeeAlso []
|
SeeAlso []
|
||||||
|
|
||||||
***********************************************************************/
|
***********************************************************************/
|
||||||
int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int fVerbose )
|
int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int iFrameExtra, int fVerbose )
|
||||||
{
|
{
|
||||||
Gia_Man_t * pAbs, * pNew;
|
Gia_Man_t * pAbs, * pNew;
|
||||||
Vec_Int_t * vPis, * vPPis, * vFlops, * vInit;
|
Vec_Int_t * vPis, * vPPis, * vFlops, * vInit;
|
||||||
|
|
@ -342,6 +385,7 @@ int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int fVer
|
||||||
Abc_Print( 1, "Gia_ManNewRefine(): Abstraction gate map is missing.\n" );
|
Abc_Print( 1, "Gia_ManNewRefine(): Abstraction gate map is missing.\n" );
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Abc_Print( 1, "Refining with %d-frame CEX, starting in frame %d, with %d extra frames.\n", pCex->iFrame, iFrameStart, iFrameExtra );
|
||||||
// derive abstraction
|
// derive abstraction
|
||||||
pAbs = Gia_ManDupAbsGates( p, p->vGateClasses );
|
pAbs = Gia_ManDupAbsGates( p, p->vGateClasses );
|
||||||
Gia_ManStop( pAbs );
|
Gia_ManStop( pAbs );
|
||||||
|
|
@ -365,19 +409,31 @@ int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int fVer
|
||||||
// get inputs
|
// get inputs
|
||||||
Gia_ManGlaCollect( p, p->vGateClasses, &vPis, &vPPis, &vFlops, NULL );
|
Gia_ManGlaCollect( p, p->vGateClasses, &vPis, &vPPis, &vFlops, NULL );
|
||||||
assert( Vec_IntSize(vPis) + Vec_IntSize(vPPis) == Gia_ManPiNum(pAbs) );
|
assert( Vec_IntSize(vPis) + Vec_IntSize(vPPis) == Gia_ManPiNum(pAbs) );
|
||||||
|
Gia_ManStop( pAbs );
|
||||||
|
//Vec_IntPrint( vFlops );
|
||||||
|
//Vec_IntPrint( vInit );
|
||||||
// transform the manager to have new init state
|
// transform the manager to have new init state
|
||||||
pNew = Gia_ManTransformFlops( p, vFlops, vInit );
|
pNew = Gia_ManTransformFlops( p, vFlops, vInit );
|
||||||
assert( pNew->vGateClasses == NULL );
|
|
||||||
pNew->vGateClasses = Vec_IntDup( p->vGateClasses );
|
|
||||||
Vec_IntFree( vPis );
|
Vec_IntFree( vPis );
|
||||||
Vec_IntFree( vPPis );
|
Vec_IntFree( vPPis );
|
||||||
Vec_IntFree( vFlops );
|
Vec_IntFree( vFlops );
|
||||||
Vec_IntFree( vInit );
|
Vec_IntFree( vInit );
|
||||||
|
// verify abstraction
|
||||||
|
/*
|
||||||
|
{
|
||||||
|
Gia_Man_t * pAbs = Gia_ManDupAbsGates( pNew, p->vGateClasses );
|
||||||
|
Gia_ManCheckCex( pAbs, pCex, iFrameStart );
|
||||||
|
Gia_ManStop( pAbs );
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
// transfer abstraction
|
||||||
|
assert( pNew->vGateClasses == NULL );
|
||||||
|
pNew->vGateClasses = Vec_IntDup( p->vGateClasses );
|
||||||
// perform abstraction for the new AIG
|
// perform abstraction for the new AIG
|
||||||
{
|
{
|
||||||
Gia_ParVta_t Pars, * pPars = &Pars;
|
Gia_ParVta_t Pars, * pPars = &Pars;
|
||||||
Gia_VtaSetDefaultParams( pPars );
|
Gia_VtaSetDefaultParams( pPars );
|
||||||
pPars->nFramesMax = pCex->iFrame - iFrameStart + 1;
|
pPars->nFramesMax = pCex->iFrame - iFrameStart + 1 + iFrameExtra;
|
||||||
pPars->fVerbose = fVerbose;
|
pPars->fVerbose = fVerbose;
|
||||||
RetValue = Ga2_ManPerform( pNew, pPars );
|
RetValue = Ga2_ManPerform( pNew, pPars );
|
||||||
}
|
}
|
||||||
|
|
@ -387,7 +443,6 @@ int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int fVer
|
||||||
pNew->vGateClasses = NULL;
|
pNew->vGateClasses = NULL;
|
||||||
// cleanup
|
// cleanup
|
||||||
Gia_ManStop( pNew );
|
Gia_ManStop( pNew );
|
||||||
Gia_ManStop( pAbs );
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27820,12 +27820,13 @@ usage:
|
||||||
***********************************************************************/
|
***********************************************************************/
|
||||||
int Abc_CommandAbc9GlaRefine( Abc_Frame_t * pAbc, int argc, char ** argv )
|
int Abc_CommandAbc9GlaRefine( Abc_Frame_t * pAbc, int argc, char ** argv )
|
||||||
{
|
{
|
||||||
extern int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int fVerbose );
|
extern int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int iFrameExtra, int fVerbose );
|
||||||
int iFrameStart = 0;
|
int iFrameStart = 0;
|
||||||
|
int iFrameExtra = 0;
|
||||||
int fMinCut = 1;
|
int fMinCut = 1;
|
||||||
int c, fVerbose = 0;
|
int c, fVerbose = 0;
|
||||||
Extra_UtilGetoptReset();
|
Extra_UtilGetoptReset();
|
||||||
while ( ( c = Extra_UtilGetopt( argc, argv, "Fmvh" ) ) != EOF )
|
while ( ( c = Extra_UtilGetopt( argc, argv, "FGmvh" ) ) != EOF )
|
||||||
{
|
{
|
||||||
switch ( c )
|
switch ( c )
|
||||||
{
|
{
|
||||||
|
|
@ -27840,6 +27841,17 @@ int Abc_CommandAbc9GlaRefine( Abc_Frame_t * pAbc, int argc, char ** argv )
|
||||||
if ( iFrameStart < 0 )
|
if ( iFrameStart < 0 )
|
||||||
goto usage;
|
goto usage;
|
||||||
break;
|
break;
|
||||||
|
case 'G':
|
||||||
|
if ( globalUtilOptind >= argc )
|
||||||
|
{
|
||||||
|
Abc_Print( -1, "Command line switch \"-G\" should be followed by an integer.\n" );
|
||||||
|
goto usage;
|
||||||
|
}
|
||||||
|
iFrameExtra = atoi(argv[globalUtilOptind]);
|
||||||
|
globalUtilOptind++;
|
||||||
|
if ( iFrameExtra < 0 )
|
||||||
|
goto usage;
|
||||||
|
break;
|
||||||
case 'm':
|
case 'm':
|
||||||
fMinCut ^= 1;
|
fMinCut ^= 1;
|
||||||
break;
|
break;
|
||||||
|
|
@ -27867,14 +27879,15 @@ int Abc_CommandAbc9GlaRefine( Abc_Frame_t * pAbc, int argc, char ** argv )
|
||||||
Abc_Print( -1, "Abc_CommandAbc9GlaRefine(): There is no counter-example.\n" );
|
Abc_Print( -1, "Abc_CommandAbc9GlaRefine(): There is no counter-example.\n" );
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
pAbc->Status = Gia_ManNewRefine( pAbc->pGia, pAbc->pCex, iFrameStart, fVerbose );
|
pAbc->Status = Gia_ManNewRefine( pAbc->pGia, pAbc->pCex, iFrameStart, iFrameExtra, fVerbose );
|
||||||
Abc_FrameReplaceCex( pAbc, &pAbc->pGia->pCexSeq );
|
Abc_FrameReplaceCex( pAbc, &pAbc->pGia->pCexSeq );
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
usage:
|
usage:
|
||||||
Abc_Print( -2, "usage: &gla_refine [-F num] [-vh]\n" );
|
Abc_Print( -2, "usage: &gla_refine [-FG num] [-vh]\n" );
|
||||||
Abc_Print( -2, "\t refines the pre-computed gate map using the counter-example\n" );
|
Abc_Print( -2, "\t refines the pre-computed gate map using the counter-example\n" );
|
||||||
Abc_Print( -2, "\t-F num : starting timeframe for suffix refinement [default = %d]\n", iFrameStart );
|
Abc_Print( -2, "\t-F num : starting timeframe for suffix refinement [default = %d]\n", iFrameStart );
|
||||||
|
Abc_Print( -2, "\t-G num : the number of additional timeframes to try [default = %d]\n", iFrameExtra );
|
||||||
// Abc_Print( -2, "\t-m : toggle using min-cut to derive the refinements [default = %s]\n", fMinCut? "yes": "no" );
|
// Abc_Print( -2, "\t-m : toggle using min-cut to derive the refinements [default = %s]\n", fMinCut? "yes": "no" );
|
||||||
Abc_Print( -2, "\t-v : toggle printing verbose information [default = %s]\n", fVerbose? "yes": "no" );
|
Abc_Print( -2, "\t-v : toggle printing verbose information [default = %s]\n", fVerbose? "yes": "no" );
|
||||||
Abc_Print( -2, "\t-h : print the command usage\n");
|
Abc_Print( -2, "\t-h : print the command usage\n");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue