mirror of https://github.com/YosysHQ/abc.git
Other improvements to &vta and &gla.
This commit is contained in:
parent
8b0302cdab
commit
b2da2c3dc7
|
|
@ -1925,6 +1925,8 @@ finish:
|
||||||
p->pPars->iFrame = pCex->iFrame - 1;
|
p->pPars->iFrame = pCex->iFrame - 1;
|
||||||
}
|
}
|
||||||
Abc_PrintTime( 1, "Time", clock() - clk );
|
Abc_PrintTime( 1, "Time", clock() - clk );
|
||||||
|
if ( p->pPars->fVerbose )
|
||||||
|
{
|
||||||
p->timeOther = (clock() - clk) - p->timeUnsat - p->timeSat - p->timeCex - p->timeInit;
|
p->timeOther = (clock() - clk) - p->timeUnsat - p->timeSat - p->timeCex - p->timeInit;
|
||||||
ABC_PRTP( "Runtime: Initializing", p->timeInit, clock() - clk );
|
ABC_PRTP( "Runtime: Initializing", p->timeInit, clock() - clk );
|
||||||
ABC_PRTP( "Runtime: Solver UNSAT", p->timeUnsat, clock() - clk );
|
ABC_PRTP( "Runtime: Solver UNSAT", p->timeUnsat, clock() - clk );
|
||||||
|
|
@ -1933,6 +1935,7 @@ finish:
|
||||||
ABC_PRTP( "Runtime: Other ", p->timeOther, clock() - clk );
|
ABC_PRTP( "Runtime: Other ", p->timeOther, clock() - clk );
|
||||||
ABC_PRTP( "Runtime: TOTAL ", clock() - clk, clock() - clk );
|
ABC_PRTP( "Runtime: TOTAL ", clock() - clk, clock() - clk );
|
||||||
Gla_ManReportMemory( p );
|
Gla_ManReportMemory( p );
|
||||||
|
}
|
||||||
Gla_ManStop( p );
|
Gla_ManStop( p );
|
||||||
fflush( stdout );
|
fflush( stdout );
|
||||||
return RetValue;
|
return RetValue;
|
||||||
|
|
|
||||||
|
|
@ -1816,6 +1816,8 @@ finish:
|
||||||
}
|
}
|
||||||
Abc_PrintTime( 1, "Time", clock() - clk );
|
Abc_PrintTime( 1, "Time", clock() - clk );
|
||||||
|
|
||||||
|
if ( p->pPars->fVerbose )
|
||||||
|
{
|
||||||
p->timeOther = (clock() - clk) - p->timeUnsat - p->timeSat - p->timeCex;
|
p->timeOther = (clock() - clk) - p->timeUnsat - p->timeSat - p->timeCex;
|
||||||
ABC_PRTP( "Runtime: Solver UNSAT", p->timeUnsat, clock() - clk );
|
ABC_PRTP( "Runtime: Solver UNSAT", p->timeUnsat, clock() - clk );
|
||||||
ABC_PRTP( "Runtime: Solver SAT ", p->timeSat, clock() - clk );
|
ABC_PRTP( "Runtime: Solver SAT ", p->timeSat, clock() - clk );
|
||||||
|
|
@ -1823,6 +1825,7 @@ finish:
|
||||||
ABC_PRTP( "Runtime: Other ", p->timeOther, clock() - clk );
|
ABC_PRTP( "Runtime: Other ", p->timeOther, clock() - clk );
|
||||||
ABC_PRTP( "Runtime: TOTAL ", clock() - clk, clock() - clk );
|
ABC_PRTP( "Runtime: TOTAL ", clock() - clk, clock() - clk );
|
||||||
Gia_VtaPrintMemory( p );
|
Gia_VtaPrintMemory( p );
|
||||||
|
}
|
||||||
|
|
||||||
Vga_ManStop( p );
|
Vga_ManStop( p );
|
||||||
fflush( stdout );
|
fflush( stdout );
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue