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
637da8ba
Commit
637da8ba
authored
Oct 23, 2015
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added switch 'satclp -Z' to control the max size of the cone to work with.
parent
3712dd30
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
12 deletions
+37
-12
src/base/abc/abc.h
+1
-1
src/base/abci/abc.c
+17
-4
src/base/abci/abcCollapse.c
+19
-7
No files found.
src/base/abc/abc.h
View file @
637da8ba
...
...
@@ -600,7 +600,7 @@ extern ABC_DLL int Abc_NtkCheckUniqueCoNames( Abc_Ntk_t * pNtk );
extern
ABC_DLL
int
Abc_NtkCheckUniqueCioNames
(
Abc_Ntk_t
*
pNtk
);
/*=== abcCollapse.c ==========================================================*/
extern
ABC_DLL
Abc_Ntk_t
*
Abc_NtkCollapse
(
Abc_Ntk_t
*
pNtk
,
int
fBddSizeMax
,
int
fDualRail
,
int
fReorder
,
int
fVerbose
);
extern
ABC_DLL
Abc_Ntk_t
*
Abc_NtkCollapseSat
(
Abc_Ntk_t
*
pNtk
,
int
nCubeLim
,
int
nBTLimit
,
int
fCanon
,
int
fReverse
,
int
fVerbose
);
extern
ABC_DLL
Abc_Ntk_t
*
Abc_NtkCollapseSat
(
Abc_Ntk_t
*
pNtk
,
int
nCubeLim
,
int
nBTLimit
,
int
nCostMax
,
int
fCanon
,
int
fReverse
,
int
fVerbose
);
/*=== abcCut.c ==========================================================*/
extern
ABC_DLL
void
*
Abc_NodeGetCutsRecursive
(
void
*
p
,
Abc_Obj_t
*
pObj
,
int
fDag
,
int
fTree
);
extern
ABC_DLL
void
*
Abc_NodeGetCuts
(
void
*
p
,
Abc_Obj_t
*
pObj
,
int
fDag
,
int
fTree
);
...
...
src/base/abci/abc.c
View file @
637da8ba
...
...
@@ -3104,6 +3104,7 @@ int Abc_CommandSatClp( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Ntk_t
*
pNtk
=
Abc_FrameReadNtk
(
pAbc
),
*
pNtkRes
;
int
nCubeLim
=
1000
;
int
nBTLimit
=
1000000
;
int
nCostMax
=
20000000
;
int
fCanon
=
0
;
int
fReverse
=
0
;
int
fVerbose
=
0
;
...
...
@@ -3111,7 +3112,7 @@ int Abc_CommandSatClp( Abc_Frame_t * pAbc, int argc, char ** argv )
// set defaults
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"CLcrvh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"CL
Z
crvh"
)
)
!=
EOF
)
{
switch
(
c
)
{
...
...
@@ -3137,6 +3138,17 @@ int Abc_CommandSatClp( Abc_Frame_t * pAbc, int argc, char ** argv )
if
(
nBTLimit
<
0
)
goto
usage
;
break
;
case
'Z'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-Z
\"
should be followed by an integer.
\n
"
);
goto
usage
;
}
nCostMax
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
nCostMax
<
0
)
goto
usage
;
break
;
case
'c'
:
fCanon
^=
1
;
break
;
...
...
@@ -3167,11 +3179,11 @@ int Abc_CommandSatClp( Abc_Frame_t * pAbc, int argc, char ** argv )
// get the new network
if
(
Abc_NtkIsStrash
(
pNtk
)
)
pNtkRes
=
Abc_NtkCollapseSat
(
pNtk
,
nCubeLim
,
nBTLimit
,
fCanon
,
fReverse
,
fVerbose
);
pNtkRes
=
Abc_NtkCollapseSat
(
pNtk
,
nCubeLim
,
nBTLimit
,
nCostMax
,
fCanon
,
fReverse
,
fVerbose
);
else
{
pNtk
=
Abc_NtkStrash
(
pNtk
,
0
,
0
,
0
);
pNtkRes
=
Abc_NtkCollapseSat
(
pNtk
,
nCubeLim
,
nBTLimit
,
fCanon
,
fReverse
,
fVerbose
);
pNtkRes
=
Abc_NtkCollapseSat
(
pNtk
,
nCubeLim
,
nBTLimit
,
nCostMax
,
fCanon
,
fReverse
,
fVerbose
);
Abc_NtkDelete
(
pNtk
);
}
if
(
pNtkRes
==
NULL
)
...
...
@@ -3184,10 +3196,11 @@ int Abc_CommandSatClp( Abc_Frame_t * pAbc, int argc, char ** argv )
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: satclp [-CL num] [-crvh]
\n
"
);
Abc_Print
(
-
2
,
"usage: satclp [-CL
Z
num] [-crvh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
performs SAT based collapsing
\n
"
);
Abc_Print
(
-
2
,
"
\t
-C num : the limit on the SOP size of one output [default = %d]
\n
"
,
nCubeLim
);
Abc_Print
(
-
2
,
"
\t
-L num : the limit on the number of conflicts in one SAT call [default = %d]
\n
"
,
nBTLimit
);
Abc_Print
(
-
2
,
"
\t
-Z num : the limit on the cost of the largest output [default = %d]
\n
"
,
nCostMax
);
Abc_Print
(
-
2
,
"
\t
-c : toggles using canonical ISOP computation [default = %s]
\n
"
,
fCanon
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-r : toggles using reverse veriable ordering [default = %s]
\n
"
,
fReverse
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggles printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
src/base/abci/abcCollapse.c
View file @
637da8ba
...
...
@@ -368,7 +368,7 @@ Vec_Ptr_t * Abc_NtkCreateCoOrder( Abc_Ntk_t * pNtk, Vec_Wec_t * vSupps )
Vec_Ptr_t
*
vNodes
=
Vec_PtrAlloc
(
Abc_NtkCoNum
(
pNtk
)
);
Abc_NtkForEachCo
(
pNtk
,
pNode
,
i
)
{
pNode
->
iTemp
=
Vec_IntSize
(
Vec_WecEntry
(
vSupps
,
Abc_ObjFanin
0
(
pNode
)
->
Id
)
);
pNode
->
iTemp
=
Vec_IntSize
(
Vec_WecEntry
(
vSupps
,
Abc_ObjFanin
Id0
(
pNode
)
)
);
Vec_PtrPush
(
vNodes
,
pNode
);
}
// order objects alphabetically
...
...
@@ -412,15 +412,15 @@ Abc_Obj_t * Abc_NtkFromSopsOne( Abc_Ntk_t * pNtkNew, Abc_Ntk_t * pNtk, int iCo,
Vec_StrFree
(
vSop
);
return
pNodeNew
;
}
Abc_Ntk_t
*
Abc_NtkFromSops
(
Abc_Ntk_t
*
pNtk
,
int
nCubeLim
,
int
nBTLimit
,
int
fCanon
,
int
fReverse
,
int
fVerbose
)
Abc_Ntk_t
*
Abc_NtkFromSops
(
Abc_Ntk_t
*
pNtk
,
int
nCubeLim
,
int
nBTLimit
,
int
nCostMax
,
int
fCanon
,
int
fReverse
,
int
fVerbose
)
{
ProgressBar
*
pProgress
;
Abc_Ntk_t
*
pNtkNew
;
Abc_Obj_t
*
pNode
,
*
pDriver
,
*
pNodeNew
;
Vec_Ptr_t
*
vDriverCopy
,
*
vCoNodes
;
Vec_Int_t
*
vNodeCoIds
;
Vec_Ptr_t
*
vDriverCopy
,
*
vCoNodes
,
*
vDfsNodes
;
Vec_Int_t
*
vNodeCoIds
,
*
vLevel
;
Vec_Wec_t
*
vSupps
;
int
i
;
int
i
,
Cost
;
// Abc_NtkForEachCi( pNtk, pNode, i )
// printf( "%d ", Abc_ObjFanoutNum(pNode) );
...
...
@@ -430,6 +430,18 @@ Abc_Ntk_t * Abc_NtkFromSops( Abc_Ntk_t * pNtk, int nCubeLim, int nBTLimit, int f
vSupps
=
Abc_NtkCreateCoSupps
(
pNtk
,
fVerbose
);
// order CO nodes by support size
vCoNodes
=
Abc_NtkCreateCoOrder
(
pNtk
,
vSupps
);
// compute cost of the largest node
pNode
=
(
Abc_Obj_t
*
)
Vec_PtrEntry
(
vCoNodes
,
0
);
vDfsNodes
=
Abc_NtkDfsNodes
(
pNtk
,
&
pNode
,
1
);
vLevel
=
Vec_WecEntry
(
vSupps
,
Abc_ObjFaninId0
(
pNode
)
);
Cost
=
Vec_PtrSize
(
vDfsNodes
)
*
Vec_IntSize
(
vLevel
)
*
nCubeLim
;
Vec_PtrFree
(
vDfsNodes
);
if
(
Cost
>
nCostMax
)
{
Vec_PtrFree
(
vCoNodes
);
Vec_WecFree
(
vSupps
);
return
NULL
;
}
// collect CO IDs in this order
vNodeCoIds
=
Vec_IntAlloc
(
Abc_NtkCoNum
(
pNtk
)
);
Abc_NtkForEachCo
(
pNtk
,
pNode
,
i
)
...
...
@@ -487,12 +499,12 @@ Abc_Ntk_t * Abc_NtkFromSops( Abc_Ntk_t * pNtk, int nCubeLim, int nBTLimit, int f
Extra_ProgressBarStop
(
pProgress
);
return
pNtkNew
;
}
Abc_Ntk_t
*
Abc_NtkCollapseSat
(
Abc_Ntk_t
*
pNtk
,
int
nCubeLim
,
int
nBTLimit
,
int
fCanon
,
int
fReverse
,
int
fVerbose
)
Abc_Ntk_t
*
Abc_NtkCollapseSat
(
Abc_Ntk_t
*
pNtk
,
int
nCubeLim
,
int
nBTLimit
,
int
nCostMax
,
int
fCanon
,
int
fReverse
,
int
fVerbose
)
{
Abc_Ntk_t
*
pNtkNew
;
assert
(
Abc_NtkIsStrash
(
pNtk
)
);
// create the new network
pNtkNew
=
Abc_NtkFromSops
(
pNtk
,
nCubeLim
,
nBTLimit
,
fCanon
,
fReverse
,
fVerbose
);
pNtkNew
=
Abc_NtkFromSops
(
pNtk
,
nCubeLim
,
nBTLimit
,
nCostMax
,
fCanon
,
fReverse
,
fVerbose
);
if
(
pNtkNew
==
NULL
)
return
NULL
;
if
(
pNtk
->
pExdc
)
...
...
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