mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-06 17:09:43 +02:00
Experiments with mapping.
This commit is contained in:
+1
-1
@@ -952,7 +952,7 @@ void Kf_ManComputeMapping( Kf_Man_t * p )
|
||||
if ( p->pPars->fVerbose )
|
||||
{
|
||||
printf( "Aig: CI = %d CO = %d AND = %d ", Gia_ManCiNum(p->pGia), Gia_ManCoNum(p->pGia), Gia_ManAndNum(p->pGia) );
|
||||
printf( "LutSize = %d CutMax = %d Hash = %d\n", p->pPars->nLutSize, p->pPars->nCutNum, p->pPars->fCutHashing );
|
||||
printf( "LutSize = %d CutMax = %d Threads = %d\n", p->pPars->nLutSize, p->pPars->nCutNum, p->pPars->nProcNum );
|
||||
printf( "Computing cuts...\r" );
|
||||
fflush( stdout );
|
||||
}
|
||||
|
||||
+2
-2
@@ -30407,9 +30407,9 @@ int Abc_CommandAbc9Kf( Abc_Frame_t * pAbc, int argc, char ** argv )
|
||||
Abc_Print( -1, "Command line switch \"-P\" should be followed by a positive integer.\n" );
|
||||
goto usage;
|
||||
}
|
||||
pPars->nProcNumMax = atoi(argv[globalUtilOptind]);
|
||||
pPars->nProcNum = atoi(argv[globalUtilOptind]);
|
||||
globalUtilOptind++;
|
||||
if ( pPars->nProcNumMax < 0 )
|
||||
if ( pPars->nProcNum < 0 )
|
||||
goto usage;
|
||||
break;
|
||||
case 'R':
|
||||
|
||||
Reference in New Issue
Block a user