summaryrefslogtreecommitdiffstats
path: root/src/map/amap
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-07-09 22:57:03 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2012-07-09 22:57:03 -0700
commit908d5e696c7e73f80abcef85ec796511f3bffb0f (patch)
tree6fb41dd27d8ae48d93f71cda4ed56526092c5302 /src/map/amap
parentd46c49088d7b9f1725d4d8624717f7209022c632 (diff)
downloadabc-908d5e696c7e73f80abcef85ec796511f3bffb0f.tar.gz
abc-908d5e696c7e73f80abcef85ec796511f3bffb0f.tar.bz2
abc-908d5e696c7e73f80abcef85ec796511f3bffb0f.zip
Replacing Mb/Gb to be MB/GB.
Diffstat (limited to 'src/map/amap')
-rw-r--r--src/map/amap/amapGraph.c2
-rw-r--r--src/map/amap/amapLiberty.c2
-rw-r--r--src/map/amap/amapMerge.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/map/amap/amapGraph.c b/src/map/amap/amapGraph.c
index 36a3c851..2438425b 100644
--- a/src/map/amap/amapGraph.c
+++ b/src/map/amap/amapGraph.c
@@ -335,7 +335,7 @@ void Amap_ManCreate( Amap_Man_t * p, Aig_Man_t * pAig )
if ( p->pPars->fVerbose )
{
if ( 1.0 * Aig_ManObjNum(pAig) * sizeof(Amap_Obj_t) / (1<<30) > 0.1 )
- printf( "Warning: Mapper allocates %.3f Gb for subject graph with %d objects.\n",
+ printf( "Warning: Mapper allocates %.3f GB for subject graph with %d objects.\n",
1.0 * Aig_ManObjNum(pAig) * sizeof(Amap_Obj_t) / (1<<30), Aig_ManObjNum(pAig) );
}
// create PIs and remember them in the old nodes
diff --git a/src/map/amap/amapLiberty.c b/src/map/amap/amapLiberty.c
index c1798f09..34bd5303 100644
--- a/src/map/amap/amapLiberty.c
+++ b/src/map/amap/amapLiberty.c
@@ -913,7 +913,7 @@ int Amap_LibertyParse( char * pFileName, char * pFileGenlib, int fVerbose )
}
if ( fVerbose )
{
- printf( "Memory = %7.2f Mb. ", 1.0*(p->nContents+p->nItermAlloc*sizeof(Amap_Item_t))/(1<<20) );
+ printf( "Memory = %7.2f MB. ", 1.0*(p->nContents+p->nItermAlloc*sizeof(Amap_Item_t))/(1<<20) );
ABC_PRT( "Time", clock() - clk );
}
Amap_LibertyStop( p );
diff --git a/src/map/amap/amapMerge.c b/src/map/amap/amapMerge.c
index 85a1713c..b4aaca9d 100644
--- a/src/map/amap/amapMerge.c
+++ b/src/map/amap/amapMerge.c
@@ -522,7 +522,7 @@ void Amap_ManMerge( Amap_Man_t * p )
if ( p->pPars->fVerbose )
{
printf( "AIG object is %d bytes. ", (int)sizeof(Amap_Obj_t) );
- printf( "Internal AIG = %5.2f Mb. Cuts = %5.2f Mb.\n",
+ printf( "Internal AIG = %5.2f MB. Cuts = %5.2f MB.\n",
1.0*Amap_ManObjNum(p)*sizeof(Amap_Obj_t)/(1<<20), 1.0*p->nBytesUsed/(1<<20) );
printf( "Node =%6d. Try =%9d. Try3 =%10d. Used =%7d. R =%6.2f. ",
Amap_ManNodeNum(p), p->nCutsTried, p->nCutsTried3, p->nCutsUsed,