mirror of https://github.com/YosysHQ/abc.git
Enabling LUT decomposition in two special cases.
This commit is contained in:
parent
0916417e2e
commit
728291b087
|
|
@ -1031,7 +1031,7 @@ Gia_Man_t * Gia_ManFromIfLogic( If_Man_t * pIfMan )
|
|||
{
|
||||
pCutBest = If_ObjCutBest( pIfObj );
|
||||
// perform sorting of cut leaves by delay, so that the slowest pin drives the fastest input of the LUT
|
||||
if ( !pIfMan->pPars->fDelayOpt && !pIfMan->pPars->pLutStruct && !pIfMan->pPars->fUserRecLib && !pIfMan->pPars->nGateSize )
|
||||
if ( !pIfMan->pPars->fDelayOpt && !pIfMan->pPars->pLutStruct && !pIfMan->pPars->fUserRecLib && !pIfMan->pPars->nGateSize && !pIfMan->pPars->fEnableCheck75 && !pIfMan->pPars->fEnableCheck75u )
|
||||
If_CutRotatePins( pIfMan, pCutBest );
|
||||
// collect leaves of the best cut
|
||||
Vec_IntClear( vLeaves );
|
||||
|
|
|
|||
Loading…
Reference in New Issue