Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
a797ea0c
Commit
a797ea0c
authored
Dec 02, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enabling additional stat printouts.
parent
86fcba60
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
src/aig/gia/giaDup.c
+0
-1
src/base/abci/abcRec3.c
+11
-10
No files found.
src/aig/gia/giaDup.c
View file @
a797ea0c
...
@@ -457,7 +457,6 @@ void Gia_ManDupAppend( Gia_Man_t * pNew, Gia_Man_t * pTwo )
...
@@ -457,7 +457,6 @@ void Gia_ManDupAppend( Gia_Man_t * pNew, Gia_Man_t * pTwo )
else
if
(
Gia_ObjIsCo
(
pObj
)
)
else
if
(
Gia_ObjIsCo
(
pObj
)
)
pObj
->
Value
=
Gia_ManAppendCo
(
pNew
,
Gia_ObjFanin0Copy
(
pObj
)
);
pObj
->
Value
=
Gia_ManAppendCo
(
pNew
,
Gia_ObjFanin0Copy
(
pObj
)
);
}
}
return
pNew
;
}
}
/**Function*************************************************************
/**Function*************************************************************
...
...
src/base/abci/abcRec3.c
View file @
a797ea0c
...
@@ -57,7 +57,7 @@ struct Lms_Man_t_
...
@@ -57,7 +57,7 @@ struct Lms_Man_t_
// internal data for library construction
// internal data for library construction
Gia_Man_t
*
pGia
;
// the record
Gia_Man_t
*
pGia
;
// the record
Vec_Mem_t
*
vTtMem
;
// truth table memory and hash table
Vec_Mem_t
*
vTtMem
;
// truth table memory and hash table
Vec_Mem_t
*
vTtMem2
;
// truth table memory and hash table
//
Vec_Mem_t * vTtMem2; // truth table memory and hash table
Vec_Int_t
*
vTruthIds
;
// truth table IDs of each PO
Vec_Int_t
*
vTruthIds
;
// truth table IDs of each PO
// internal data for AIG level minimization (allocated the first time it is called)
// internal data for AIG level minimization (allocated the first time it is called)
Vec_Int_t
*
vTruthPo
;
// first PO where this canonicized truth table was seen
Vec_Int_t
*
vTruthPo
;
// first PO where this canonicized truth table was seen
...
@@ -318,9 +318,9 @@ Lms_Man_t * Lms_ManStart( Gia_Man_t * pGia, int nVars, int nCuts, int fFuncOnly,
...
@@ -318,9 +318,9 @@ Lms_Man_t * Lms_ManStart( Gia_Man_t * pGia, int nVars, int nCuts, int fFuncOnly,
p
->
fFuncOnly
=
fFuncOnly
;
p
->
fFuncOnly
=
fFuncOnly
;
// internal data for library construction
// internal data for library construction
p
->
vTtMem
=
Vec_MemAlloc
(
p
->
nWords
,
12
);
// 32 KB/page for 6-var functions
p
->
vTtMem
=
Vec_MemAlloc
(
p
->
nWords
,
12
);
// 32 KB/page for 6-var functions
p
->
vTtMem2
=
Vec_MemAlloc
(
p
->
nWords
,
12
);
// 32 KB/page for 6-var functions
//
p->vTtMem2 = Vec_MemAlloc( p->nWords, 12 ); // 32 KB/page for 6-var functions
Vec_MemHashAlloc
(
p
->
vTtMem
,
10000
);
Vec_MemHashAlloc
(
p
->
vTtMem
,
10000
);
Vec_MemHashAlloc
(
p
->
vTtMem2
,
10000
);
//
Vec_MemHashAlloc( p->vTtMem2, 10000 );
if
(
fFuncOnly
)
if
(
fFuncOnly
)
return
p
;
return
p
;
p
->
vTruthIds
=
Vec_IntAlloc
(
10000
);
p
->
vTruthIds
=
Vec_IntAlloc
(
10000
);
...
@@ -375,9 +375,9 @@ void Lms_ManStop( Lms_Man_t * p )
...
@@ -375,9 +375,9 @@ void Lms_ManStop( Lms_Man_t * p )
// internal data for library construction
// internal data for library construction
Vec_IntFreeP
(
&
p
->
vTruthIds
);
Vec_IntFreeP
(
&
p
->
vTruthIds
);
Vec_MemHashFree
(
p
->
vTtMem
);
Vec_MemHashFree
(
p
->
vTtMem
);
Vec_MemHashFree
(
p
->
vTtMem2
);
//
Vec_MemHashFree( p->vTtMem2 );
Vec_MemFree
(
p
->
vTtMem
);
Vec_MemFree
(
p
->
vTtMem
);
Vec_MemFree
(
p
->
vTtMem2
);
//
Vec_MemFree( p->vTtMem2 );
Gia_ManStopP
(
&
p
->
pGia
);
Gia_ManStopP
(
&
p
->
pGia
);
ABC_FREE
(
p
);
ABC_FREE
(
p
);
}
}
...
@@ -439,7 +439,7 @@ void Lms_ManPrintFreqStats( Lms_Man_t * p )
...
@@ -439,7 +439,7 @@ void Lms_ManPrintFreqStats( Lms_Man_t * p )
word
*
pTruth
;
word
*
pTruth
;
int
i
,
Freq
,
Status
;
int
i
,
Freq
,
Status
;
printf
(
"Cuts = %10d. "
,
p
->
nTried
);
printf
(
"Cuts = %10d. "
,
p
->
nTried
);
printf
(
"Funcs = %10d (%6.2f %%). "
,
Vec_MemEntryNum
(
p
->
vTtMem2
),
100
.
0
*
Vec_MemEntryNum
(
p
->
vTtMem2
)
/
p
->
nTried
);
//
printf( "Funcs = %10d (%6.2f %%). ", Vec_MemEntryNum(p->vTtMem2), 100.0*Vec_MemEntryNum(p->vTtMem2)/p->nTried );
printf
(
"Class = %10d (%6.2f %%). "
,
Vec_MemEntryNum
(
p
->
vTtMem
),
100
.
0
*
Vec_MemEntryNum
(
p
->
vTtMem
)
/
p
->
nTried
);
printf
(
"Class = %10d (%6.2f %%). "
,
Vec_MemEntryNum
(
p
->
vTtMem
),
100
.
0
*
Vec_MemEntryNum
(
p
->
vTtMem
)
/
p
->
nTried
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
// return;
// return;
...
@@ -527,7 +527,7 @@ void Lms_ManPrint( Lms_Man_t * p )
...
@@ -527,7 +527,7 @@ void Lms_ManPrint( Lms_Man_t * p )
printf
(
"Library with %d vars has %d classes and %d AIG subgraphs with %d AND nodes.
\n
"
,
printf
(
"Library with %d vars has %d classes and %d AIG subgraphs with %d AND nodes.
\n
"
,
p
->
nVars
,
Vec_MemEntryNum
(
p
->
vTtMem
),
p
->
nAdded
,
p
->
pGia
?
Gia_ManAndNum
(
p
->
pGia
)
:
0
);
p
->
nVars
,
Vec_MemEntryNum
(
p
->
vTtMem
),
p
->
nAdded
,
p
->
pGia
?
Gia_ManAndNum
(
p
->
pGia
)
:
0
);
Lms_ManPrintFreqStats
(
p
);
//
Lms_ManPrintFreqStats( p );
Lms_ManPrintFuncStats
(
p
);
Lms_ManPrintFuncStats
(
p
);
p
->
nAddedFuncs
=
Vec_MemEntryNum
(
p
->
vTtMem
);
p
->
nAddedFuncs
=
Vec_MemEntryNum
(
p
->
vTtMem
);
...
@@ -711,8 +711,8 @@ int Abc_NtkRecAddCut3( If_Man_t * pIfMan, If_Obj_t * pRoot, If_Cut_t * pCut )
...
@@ -711,8 +711,8 @@ int Abc_NtkRecAddCut3( If_Man_t * pIfMan, If_Obj_t * pRoot, If_Cut_t * pCut )
return
1
;
return
1
;
}
}
if
(
p
->
vTtMem2
)
//
if ( p->vTtMem2 )
Vec_MemHashInsert
(
p
->
vTtMem2
,
If_CutTruthW
(
pCut
)
);
//
Vec_MemHashInsert( p->vTtMem2, If_CutTruthW(pCut) );
// semi-canonicize truth table
// semi-canonicize truth table
clk
=
clock
();
clk
=
clock
();
...
@@ -1350,7 +1350,8 @@ void Abc_NtkRecDumpTt3( char * pFileName, int fBinary )
...
@@ -1350,7 +1350,8 @@ void Abc_NtkRecDumpTt3( char * pFileName, int fBinary )
}
}
Extra_PrintHex
(
pFile
,
(
unsigned
*
)
pTruth
,
nVars
);
Extra_PrintHex
(
pFile
,
(
unsigned
*
)
pTruth
,
nVars
);
fprintf
(
pFile
,
" "
);
fprintf
(
pFile
,
" "
);
Kit_DsdWriteFromTruth
(
pBuffer
,
(
unsigned
*
)
pTruth
,
nVars
);
// Kit_DsdWriteFromTruth( pBuffer, (unsigned *)pTruth, nVars );
Dau_DsdDecompose
(
pTruth
,
p
->
nVars
,
0
,
1
,
pBuffer
);
fprintf
(
pFile
,
"%s
\n
"
,
pBuffer
);
fprintf
(
pFile
,
"%s
\n
"
,
pBuffer
);
}
}
fclose
(
pFile
);
fclose
(
pFile
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment