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
ad079f72
Commit
ad079f72
authored
Sep 24, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added switch -t to &flow2.
parent
ea9c1c0b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
9 deletions
+14
-9
src/aig/gia/giaScript.c
+5
-5
src/base/abci/abc.c
+9
-4
No files found.
src/aig/gia/giaScript.c
View file @
ad079f72
...
...
@@ -491,13 +491,13 @@ void Gia_ManPerformFlow( int fIsMapped, int nAnds, int nLevels, int nLutSize, in
SeeAlso []
***********************************************************************/
void
Gia_ManPerformFlow2
(
int
fIsMapped
,
int
nAnds
,
int
nLevels
,
int
nLutSize
,
int
nCutNum
,
int
fBalance
,
int
fVerbose
)
void
Gia_ManPerformFlow2
(
int
fIsMapped
,
int
nAnds
,
int
nLevels
,
int
nLutSize
,
int
nCutNum
,
int
fBalance
,
int
f
MinAve
,
int
f
Verbose
)
{
char
Comm1
[
100
],
Comm2
[
100
],
Comm3
[
100
],
Comm4
[
100
];
sprintf
(
Comm1
,
"&synch2 -K %d; &if -m
-K %d -C %d; &save"
,
nLutSize
,
nLutSize
,
nCutNum
);
sprintf
(
Comm2
,
"&dch -f; &if -m
-K %d -C %d; &save"
,
nLutSize
,
nCutNum
+
4
);
sprintf
(
Comm3
,
"&synch2 -K %d; &lf -m
-E 5 -K %d -C %d; &save"
,
nLutSize
,
nLutSize
,
nCutNum
);
sprintf
(
Comm4
,
"&dch -f; &lf -m
k -E 5 -K %d -C %d; &save"
,
nLutSize
,
nCutNum
+
4
);
sprintf
(
Comm1
,
"&synch2 -K %d; &if -m
%s -K %d -C %d; &save"
,
nLutSize
,
fMinAve
?
"t"
:
""
,
nLutSize
,
nCutNum
);
sprintf
(
Comm2
,
"&dch -f; &if -m
%s -K %d -C %d; &save"
,
fMinAve
?
"t"
:
""
,
nLutSize
,
nCutNum
+
4
);
sprintf
(
Comm3
,
"&synch2 -K %d; &lf -m
%s -E 5 -K %d -C %d; &save"
,
nLutSize
,
fMinAve
?
"t"
:
""
,
nLutSize
,
nCutNum
);
sprintf
(
Comm4
,
"&dch -f; &lf -m
%sk -E 5 -K %d -C %d; &save"
,
fMinAve
?
"t"
:
""
,
nLutSize
,
nCutNum
+
4
);
// perform synthesis
if
(
fVerbose
)
...
...
src/base/abci/abc.c
View file @
ad079f72
...
...
@@ -30992,13 +30992,14 @@ usage:
***********************************************************************/
int
Abc_CommandAbc9Flow2
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
extern
void
Gia_ManPerformFlow2
(
int
fIsMapped
,
int
nAnds
,
int
nLevels
,
int
nLutSize
,
int
nCutNum
,
int
fBalance
,
int
fVerbose
);
extern
void
Gia_ManPerformFlow2
(
int
fIsMapped
,
int
nAnds
,
int
nLevels
,
int
nLutSize
,
int
nCutNum
,
int
fBalance
,
int
f
MinAve
,
int
f
Verbose
);
int
nLutSize
=
6
;
int
nCutNum
=
8
;
int
fBalance
=
0
;
int
fMinAve
=
0
;
int
c
,
fVerbose
=
0
;
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"KCbvh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"KCb
t
vh"
)
)
!=
EOF
)
{
switch
(
c
)
{
...
...
@@ -31027,6 +31028,9 @@ int Abc_CommandAbc9Flow2( Abc_Frame_t * pAbc, int argc, char ** argv )
case
'b'
:
fBalance
^=
1
;
break
;
case
't'
:
fMinAve
^=
1
;
break
;
case
'v'
:
fVerbose
^=
1
;
break
;
...
...
@@ -31041,15 +31045,16 @@ int Abc_CommandAbc9Flow2( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
-
1
,
"Abc_CommandAbc9Flow2(): There is no AIG.
\n
"
);
return
1
;
}
Gia_ManPerformFlow2
(
Gia_ManHasMapping
(
pAbc
->
pGia
),
Gia_ManAndNum
(
pAbc
->
pGia
),
Gia_ManLevelNum
(
pAbc
->
pGia
),
nLutSize
,
nCutNum
,
fBalance
,
fVerbose
);
Gia_ManPerformFlow2
(
Gia_ManHasMapping
(
pAbc
->
pGia
),
Gia_ManAndNum
(
pAbc
->
pGia
),
Gia_ManLevelNum
(
pAbc
->
pGia
),
nLutSize
,
nCutNum
,
fBalance
,
f
MinAve
,
f
Verbose
);
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: &flow2 [-KC num] [-bvh]
\n
"
);
Abc_Print
(
-
2
,
"usage: &flow2 [-KC num] [-b
t
vh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
integration optimization and mapping flow
\n
"
);
Abc_Print
(
-
2
,
"
\t
-K num : the number of LUT inputs (LUT size) [default = %d]
\n
"
,
nLutSize
);
Abc_Print
(
-
2
,
"
\t
-C num : the number of cuts at a node [default = %d]
\n
"
,
nCutNum
);
Abc_Print
(
-
2
,
"
\t
-b : toggle using SOP balancing during synthesis [default = %s]
\n
"
,
fBalance
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-t : toggle minimizing average (not maximum) level [default = %s]
\n
"
,
fMinAve
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
return
1
;
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