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
05ca7dbf
Commit
05ca7dbf
authored
Oct 02, 2017
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding printout of slack distribution for mapped networks.
parent
c2721889
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
src/aig/gia/gia.h
+1
-0
src/aig/gia/giaMan.c
+0
-0
src/base/abci/abc.c
+7
-3
No files found.
src/aig/gia/gia.h
View file @
05ca7dbf
...
...
@@ -228,6 +228,7 @@ struct Gps_Par_t_
int
fMuxXor
;
int
fMiter
;
int
fSkipMap
;
int
fSlacks
;
char
*
pDumpFile
;
};
...
...
src/aig/gia/giaMan.c
View file @
05ca7dbf
This diff is collapsed.
Click to expand it.
src/base/abci/abc.c
View file @
05ca7dbf
...
...
@@ -29139,7 +29139,7 @@ int Abc_CommandAbc9Ps( Abc_Frame_t * pAbc, int argc, char ** argv )
int
c
,
fBest
=
0
;
memset
(
pPars
,
0
,
sizeof
(
Gps_Par_t
)
);
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"Dtpcnlmasbh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"Dtpcnlmas
z
bh"
)
)
!=
EOF
)
{
switch
(
c
)
{
...
...
@@ -29165,6 +29165,9 @@ int Abc_CommandAbc9Ps( Abc_Frame_t * pAbc, int argc, char ** argv )
pPars
->
fMiter
^=
1
;
break
;
case
's'
:
pPars
->
fSlacks
^=
1
;
break
;
case
'z'
:
pPars
->
fSkipMap
^=
1
;
break
;
case
'D'
:
...
...
@@ -29206,7 +29209,7 @@ int Abc_CommandAbc9Ps( Abc_Frame_t * pAbc, int argc, char ** argv )
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: &ps [-tpcnlmasbh] [-D file]
\n
"
);
Abc_Print
(
-
2
,
"usage: &ps [-tpcnlmas
z
bh] [-D file]
\n
"
);
Abc_Print
(
-
2
,
"
\t
prints stats of the current AIG
\n
"
);
Abc_Print
(
-
2
,
"
\t
-t : toggle printing BMC tents [default = %s]
\n
"
,
pPars
->
fTents
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-p : toggle printing switching activity [default = %s]
\n
"
,
pPars
->
fSwitch
?
"yes"
:
"no"
);
...
...
@@ -29215,7 +29218,8 @@ usage:
Abc_Print
(
-
2
,
"
\t
-l : toggle printing LUT size profile [default = %s]
\n
"
,
pPars
->
fLutProf
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-m : toggle printing MUX/XOR statistics [default = %s]
\n
"
,
pPars
->
fMuxXor
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-a : toggle printing miter statistics [default = %s]
\n
"
,
pPars
->
fMiter
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-s : skip mapping statistics even if mapped [default = %s]
\n
"
,
pPars
->
fSkipMap
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-s : toggle printing slack distribution [default = %s]
\n
"
,
pPars
->
fSlacks
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-z : skip mapping statistics even if mapped [default = %s]
\n
"
,
pPars
->
fSkipMap
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-b : toggle printing saved AIG statistics [default = %s]
\n
"
,
fBest
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-D file : file name to dump statistics [default = none]
\n
"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
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