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
20c46b5a
Commit
20c46b5a
authored
Oct 12, 2015
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Experiments with precomputation and matching.
parent
d25473b3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
48 additions
and
17 deletions
+48
-17
src/base/abci/abc.c
+6
-2
src/map/mio/mio.c
+10
-6
src/map/mio/mio.h
+2
-1
src/map/mio/mioRead.c
+11
-1
src/map/mio/mioUtils.c
+8
-7
src/opt/sfm/sfmDec.c
+0
-0
src/opt/sfm/sfmInt.h
+11
-0
src/opt/sfm/sfmLib.c
+0
-0
No files found.
src/base/abci/abc.c
View file @
20c46b5a
...
...
@@ -5160,7 +5160,7 @@ int Abc_CommandMfs3( Abc_Frame_t * pAbc, int argc, char ** argv )
// set defaults
Sfm_ParSetDefault3
(
pPars
);
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"OIFXMLCNdavwh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"OIFXMLCNda
o
vwh"
)
)
!=
EOF
)
{
switch
(
c
)
{
...
...
@@ -5258,6 +5258,9 @@ int Abc_CommandMfs3( Abc_Frame_t * pAbc, int argc, char ** argv )
case
'a'
:
pPars
->
fArea
^=
1
;
break
;
case
'o'
:
pPars
->
fRrOnly
^=
1
;
break
;
case
'v'
:
pPars
->
fVerbose
^=
1
;
break
;
...
...
@@ -5285,7 +5288,7 @@ int Abc_CommandMfs3( Abc_Frame_t * pAbc, int argc, char ** argv )
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: mfs3 [-OIFXMLCN <num>] [-avwh]
\n
"
);
Abc_Print
(
-
2
,
"usage: mfs3 [-OIFXMLCN <num>] [-a
o
vwh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
performs don't-care-based optimization of mapped networks
\n
"
);
Abc_Print
(
-
2
,
"
\t
-O <num> : the number of levels in the TFO cone (0 <= num) [default = %d]
\n
"
,
pPars
->
nTfoLevMax
);
Abc_Print
(
-
2
,
"
\t
-I <num> : the number of levels in the TFI cone (1 <= num) [default = %d]
\n
"
,
pPars
->
nTfiLevMax
);
...
...
@@ -5296,6 +5299,7 @@ usage:
Abc_Print
(
-
2
,
"
\t
-C <num> : the max number of conflicts in one SAT run (0 = no limit) [default = %d]
\n
"
,
pPars
->
nBTLimit
);
Abc_Print
(
-
2
,
"
\t
-N <num> : the max number of nodes to try (0 = all) [default = %d]
\n
"
,
pPars
->
nNodesMax
);
Abc_Print
(
-
2
,
"
\t
-a : toggle minimizing area or area+edges [default = %s]
\n
"
,
pPars
->
fArea
?
"area"
:
"area+edges"
);
Abc_Print
(
-
2
,
"
\t
-o : toggle using old implementation for comparison [default = %s]
\n
"
,
pPars
->
fRrOnly
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing optimization summary [default = %s]
\n
"
,
pPars
->
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-w : toggle printing detailed stats for each node [default = %s]
\n
"
,
pPars
->
fVeryVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
src/map/mio/mio.c
View file @
20c46b5a
...
...
@@ -443,7 +443,7 @@ int Mio_CommandWriteGenlib( Abc_Frame_t * pAbc, int argc, char **argv )
printf
(
"Error! Cannot open file
\"
%s
\"
for writing the library.
\n
"
,
pFileName
);
return
1
;
}
Mio_WriteLibrary
(
pFile
,
(
Mio_Library_t
*
)
Abc_FrameReadLibGen
(),
0
);
Mio_WriteLibrary
(
pFile
,
(
Mio_Library_t
*
)
Abc_FrameReadLibGen
(),
0
,
0
);
fclose
(
pFile
);
printf
(
"The current genlib library is written into file
\"
%s
\"
.
\n
"
,
pFileName
);
return
0
;
...
...
@@ -472,7 +472,8 @@ int Mio_CommandPrintGenlib( Abc_Frame_t * pAbc, int argc, char **argv )
{
FILE
*
pOut
,
*
pErr
;
Abc_Ntk_t
*
pNet
;
int
fVerbose
;
int
fShort
=
0
;
int
fVerbose
=
0
;
int
c
;
pNet
=
Abc_FrameReadNtk
(
pAbc
);
...
...
@@ -480,12 +481,14 @@ int Mio_CommandPrintGenlib( Abc_Frame_t * pAbc, int argc, char **argv )
pErr
=
Abc_FrameReadErr
(
pAbc
);
// set the defaults
fVerbose
=
1
;
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"vh"
))
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"
s
vh"
))
!=
EOF
)
{
switch
(
c
)
{
case
's'
:
fShort
^=
1
;
break
;
case
'v'
:
fVerbose
^=
1
;
break
;
...
...
@@ -501,12 +504,13 @@ int Mio_CommandPrintGenlib( Abc_Frame_t * pAbc, int argc, char **argv )
printf
(
"Library is not available.
\n
"
);
return
1
;
}
Mio_WriteLibrary
(
stdout
,
(
Mio_Library_t
*
)
Abc_FrameReadLibGen
(),
0
);
Mio_WriteLibrary
(
stdout
,
(
Mio_Library_t
*
)
Abc_FrameReadLibGen
(),
0
,
fShort
);
return
0
;
usage:
fprintf
(
pErr
,
"
\n
usage: print_genlib [-vh]
\n
"
);
fprintf
(
pErr
,
"
\n
usage: print_genlib [-
s
vh]
\n
"
);
fprintf
(
pErr
,
"
\t
print the current genlib library
\n
"
);
fprintf
(
pErr
,
"
\t
-s : toggles writing short form [default = %s]
\n
"
,
fShort
?
"yes"
:
"no"
);
fprintf
(
pErr
,
"
\t
-v : toggles enabling of verbose output [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
fprintf
(
pErr
,
"
\t
-h : print the command usage
\n
"
);
return
1
;
...
...
src/map/mio/mio.h
View file @
20c46b5a
...
...
@@ -58,6 +58,7 @@ typedef struct Mio_Cell2_t_ Mio_Cell2_t;
struct
Mio_Cell2_t_
{
char
*
pName
;
// name
Vec_Int_t
*
vExpr
;
// expression
unsigned
Id
:
28
;
// gate ID
unsigned
nFanins
:
4
;
// gate fanins
word
Area
;
// area
...
...
@@ -177,7 +178,7 @@ extern void Mio_LibraryDelete( Mio_Library_t * pLib );
extern
void
Mio_GateDelete
(
Mio_Gate_t
*
pGate
);
extern
void
Mio_PinDelete
(
Mio_Pin_t
*
pPin
);
extern
Mio_Pin_t
*
Mio_PinDup
(
Mio_Pin_t
*
pPin
);
extern
void
Mio_WriteLibrary
(
FILE
*
pFile
,
Mio_Library_t
*
pLib
,
int
fPrintSops
);
extern
void
Mio_WriteLibrary
(
FILE
*
pFile
,
Mio_Library_t
*
pLib
,
int
fPrintSops
,
int
fShort
);
extern
Mio_Gate_t
**
Mio_CollectRoots
(
Mio_Library_t
*
pLib
,
int
nInputs
,
float
tDelay
,
int
fSkipInv
,
int
*
pnGates
,
int
fVerbose
);
extern
Mio_Cell_t
*
Mio_CollectRootsNew
(
Mio_Library_t
*
pLib
,
int
nInputs
,
int
*
pnGates
,
int
fVerbose
);
extern
Mio_Cell_t
*
Mio_CollectRootsNewDefault
(
int
nInputs
,
int
*
pnGates
,
int
fVerbose
);
...
...
src/map/mio/mioRead.c
View file @
20c46b5a
...
...
@@ -329,6 +329,16 @@ int Mio_LibraryReadInternal( Mio_Library_t * pLib, char * pBuffer, int fExtended
SeeAlso []
***********************************************************************/
char
*
Mio_LibraryCleanStr
(
char
*
p
)
{
int
i
,
k
;
char
*
pRes
=
Abc_UtilStrsav
(
p
);
for
(
i
=
k
=
0
;
pRes
[
i
];
i
++
)
if
(
pRes
[
i
]
!=
' '
&&
pRes
[
i
]
!=
'\t'
&&
pRes
[
i
]
!=
'\r'
&&
pRes
[
i
]
!=
'\n'
)
pRes
[
k
++
]
=
pRes
[
i
];
pRes
[
k
]
=
0
;
return
pRes
;
}
Mio_Gate_t
*
Mio_LibraryReadGate
(
char
**
ppToken
,
int
fExtendedFormat
)
{
Mio_Gate_t
*
pGate
;
...
...
@@ -354,7 +364,7 @@ Mio_Gate_t * Mio_LibraryReadGate( char ** ppToken, int fExtendedFormat )
// then rest of the expression
pToken
=
strtok
(
NULL
,
";"
);
pGate
->
pForm
=
chomp
(
pToken
);
pGate
->
pForm
=
Mio_LibraryCleanStr
(
pToken
);
// read the pin info
// start the linked list of pins
...
...
src/map/mio/mioUtils.c
View file @
20c46b5a
...
...
@@ -200,10 +200,10 @@ void Mio_WritePin( FILE * pFile, Mio_Pin_t * pPin, int NameLen, int fAllPins )
fprintf
(
pFile
,
"%7s "
,
pPhaseNames
[
pPin
->
Phase
]
);
fprintf
(
pFile
,
"%3d "
,
(
int
)
pPin
->
dLoadInput
);
fprintf
(
pFile
,
"%3d "
,
(
int
)
pPin
->
dLoadMax
);
fprintf
(
pFile
,
"%
6
.2f "
,
pPin
->
dDelayBlockRise
);
fprintf
(
pFile
,
"%
6
.2f "
,
pPin
->
dDelayFanoutRise
);
fprintf
(
pFile
,
"%
6
.2f "
,
pPin
->
dDelayBlockFall
);
fprintf
(
pFile
,
"%
6
.2f"
,
pPin
->
dDelayFanoutFall
);
fprintf
(
pFile
,
"%
8
.2f "
,
pPin
->
dDelayBlockRise
);
fprintf
(
pFile
,
"%
8
.2f "
,
pPin
->
dDelayFanoutRise
);
fprintf
(
pFile
,
"%
8
.2f "
,
pPin
->
dDelayBlockFall
);
fprintf
(
pFile
,
"%
8
.2f"
,
pPin
->
dDelayFanoutFall
);
}
/**Function*************************************************************
...
...
@@ -225,7 +225,7 @@ void Mio_WriteGate( FILE * pFile, Mio_Gate_t * pGate, int GateLen, int NameLen,
sprintf
(
Buffer
,
"%s=%s;"
,
pGate
->
pOutName
,
pGate
->
pForm
);
fprintf
(
pFile
,
"GATE %-*s "
,
GateLen
,
pGate
->
pName
);
fprintf
(
pFile
,
"%8.2f "
,
pGate
->
dArea
);
fprintf
(
pFile
,
"%-*s "
,
Abc_MinInt
(
NameLen
+
FormLen
+
2
,
3
0
),
Buffer
);
fprintf
(
pFile
,
"%-*s "
,
Abc_MinInt
(
NameLen
+
FormLen
+
2
,
6
0
),
Buffer
);
// print the pins
if
(
fPrintSops
)
fprintf
(
pFile
,
"%s"
,
pGate
->
pSop
?
pGate
->
pSop
:
"unspecified
\n
"
);
...
...
@@ -248,12 +248,12 @@ void Mio_WriteGate( FILE * pFile, Mio_Gate_t * pGate, int GateLen, int NameLen,
SeeAlso []
***********************************************************************/
void
Mio_WriteLibrary
(
FILE
*
pFile
,
Mio_Library_t
*
pLib
,
int
fPrintSops
)
void
Mio_WriteLibrary
(
FILE
*
pFile
,
Mio_Library_t
*
pLib
,
int
fPrintSops
,
int
fShort
)
{
Mio_Gate_t
*
pGate
;
Mio_Pin_t
*
pPin
;
int
i
,
GateLen
=
0
,
NameLen
=
0
,
FormLen
=
0
;
int
fAllPins
=
Mio_CheckGates
(
pLib
);
int
fAllPins
=
fShort
||
Mio_CheckGates
(
pLib
);
Mio_LibraryForEachGate
(
pLib
,
pGate
)
{
GateLen
=
Abc_MaxInt
(
GateLen
,
strlen
(
pGate
->
pName
)
);
...
...
@@ -631,6 +631,7 @@ static inline void Mio_CollectCopy2( Mio_Cell2_t * pCell, Mio_Gate_t * pGate )
{
Mio_Pin_t
*
pPin
;
int
k
;
pCell
->
pName
=
pGate
->
pName
;
pCell
->
vExpr
=
pGate
->
vExpr
;
pCell
->
uTruth
=
pGate
->
uTruth
;
pCell
->
Area
=
(
word
)(
MIO_NUM
*
pGate
->
dArea
);
pCell
->
nFanins
=
pGate
->
nInputs
;
...
...
src/opt/sfm/sfmDec.c
View file @
20c46b5a
This diff is collapsed.
Click to expand it.
src/opt/sfm/sfmInt.h
View file @
20c46b5a
...
...
@@ -45,10 +45,16 @@ ABC_NAMESPACE_HEADER_START
#define SFM_SAT_UNDEC 0x1234567812345678
#define SFM_SAT_SAT 0x8765432187654321
#define SFM_SUPP_MAX 6
#define SFM_WORD_MAX ((SFM_SUPP_MAX>6) ? (1<<(SFM_SUPP_MAX-6)) : 1)
////////////////////////////////////////////////////////////////////////
/// BASIC TYPES ///
////////////////////////////////////////////////////////////////////////
typedef
struct
Sfm_Fun_t_
Sfm_Fun_t
;
typedef
struct
Sfm_Lib_t_
Sfm_Lib_t
;
struct
Sfm_Ntk_t_
{
// parameters
...
...
@@ -182,6 +188,11 @@ extern int Sfm_TruthToCnf( word Truth, int nVars, Vec_Int_t * vCover, V
extern
Vec_Wec_t
*
Sfm_CreateCnf
(
Sfm_Ntk_t
*
p
);
extern
void
Sfm_TranslateCnf
(
Vec_Wec_t
*
vRes
,
Vec_Str_t
*
vCnf
,
Vec_Int_t
*
vFaninMap
,
int
iPivotVar
);
/*=== sfmCore.c ==========================================================*/
/*=== sfmLib.c ==========================================================*/
extern
Sfm_Lib_t
*
Sfm_LibPrepare
(
int
nVars
,
int
fTwo
,
int
fVerbose
);
extern
void
Sfm_LibPrint
(
Sfm_Lib_t
*
p
);
extern
void
Sfm_LibStop
(
Sfm_Lib_t
*
p
);
extern
int
Sfm_LibImplement
(
Sfm_Lib_t
*
p
,
word
uTruth
,
int
*
pFanins
,
int
nFanins
,
Vec_Int_t
*
vGates
,
Vec_Wec_t
*
vFanins
);
/*=== sfmNtk.c ==========================================================*/
extern
Sfm_Ntk_t
*
Sfm_ConstructNetwork
(
Vec_Wec_t
*
vFanins
,
int
nPis
,
int
nPos
);
extern
void
Sfm_NtkPrepare
(
Sfm_Ntk_t
*
p
);
...
...
src/opt/sfm/sfmLib.c
View file @
20c46b5a
This diff is collapsed.
Click to expand it.
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