summaryrefslogtreecommitdiffstats
path: root/src/map/if
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/if
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/if')
-rw-r--r--src/map/if/ifCore.c2
-rw-r--r--src/map/if/ifDec16.c2
-rw-r--r--src/map/if/ifMan.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/map/if/ifCore.c b/src/map/if/ifCore.c
index f42c29eb..afaccfe9 100644
--- a/src/map/if/ifCore.c
+++ b/src/map/if/ifCore.c
@@ -131,7 +131,7 @@ int If_ManPerformMappingComb( If_Man_t * p )
if ( p->pPars->fVerbose )
{
-// Abc_Print( 1, "Total memory = %7.2f Mb. Peak cut memory = %7.2f Mb. ",
+// Abc_Print( 1, "Total memory = %7.2f MB. Peak cut memory = %7.2f MB. ",
// 1.0 * (p->nObjBytes + 2*sizeof(void *)) * If_ManObjNum(p) / (1<<20),
// 1.0 * p->nSetBytes * Mem_FixedReadMaxEntriesUsed(p->pMemSet) / (1<<20) );
Abc_PrintTime( 1, "Total time", clock() - clkTotal );
diff --git a/src/map/if/ifDec16.c b/src/map/if/ifDec16.c
index 42383a0d..cc1a06f3 100644
--- a/src/map/if/ifDec16.c
+++ b/src/map/if/ifDec16.c
@@ -31,7 +31,7 @@ ABC_NAMESPACE_IMPL_START
#define CLU_VAR_MAX 16
#define CLU_WRD_MAX (1 << ((CLU_VAR_MAX)-6))
-#define CLU_MEM_MAX 1000 // 1 Gb
+#define CLU_MEM_MAX 1000 // 1 GB
#define CLU_UNUSED 0xff
// decomposition
diff --git a/src/map/if/ifMan.c b/src/map/if/ifMan.c
index 9b834906..3028e370 100644
--- a/src/map/if/ifMan.c
+++ b/src/map/if/ifMan.c
@@ -604,7 +604,7 @@ void If_ManSetupSetAll( If_Man_t * p, int nCrossCut )
if ( p->pPars->fVerbose )
{
- Abc_Print( 1, "Node = %7d. Ch = %5d. Total mem = %7.2f Mb. Peak cut mem = %7.2f Mb.\n",
+ Abc_Print( 1, "Node = %7d. Ch = %5d. Total mem = %7.2f MB. Peak cut mem = %7.2f MB.\n",
If_ManAndNum(p), p->nChoices,
1.0 * (p->nObjBytes + 2*sizeof(void *)) * If_ManObjNum(p) / (1<<20),
1.0 * p->nSetBytes * nCrossCut / (1<<20) );