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
8a341c20
Commit
8a341c20
authored
Jun 05, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding a feature to collapse hierarhical AIGs.
parent
78e09e91
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
src/aig/gia/giaIf.c
+5
-0
src/base/abci/abc.c
+16
-3
No files found.
src/aig/gia/giaIf.c
View file @
8a341c20
...
@@ -1618,7 +1618,12 @@ Gia_Man_t * Gia_ManPerformMapping( Gia_Man_t * p, void * pp, int fNormalized )
...
@@ -1618,7 +1618,12 @@ Gia_Man_t * Gia_ManPerformMapping( Gia_Man_t * p, void * pp, int fNormalized )
}
}
// compute switching for the IF objects
// compute switching for the IF objects
if
(
pPars
->
fPower
)
if
(
pPars
->
fPower
)
{
if
(
p
->
pManTime
==
NULL
)
If_ManComputeSwitching
(
pIfMan
);
If_ManComputeSwitching
(
pIfMan
);
else
Abc_Print
(
0
,
"Switching activity computation for designs with boxes is disabled.
\n
"
);
}
if
(
p
->
pManTime
)
if
(
p
->
pManTime
)
pIfMan
->
pManTim
=
Tim_ManDup
(
(
Tim_Man_t
*
)
p
->
pManTime
,
0
);
pIfMan
->
pManTim
=
Tim_ManDup
(
(
Tim_Man_t
*
)
p
->
pManTime
,
0
);
if
(
!
If_ManPerformMapping
(
pIfMan
)
)
if
(
!
If_ManPerformMapping
(
pIfMan
)
)
...
...
src/base/abci/abc.c
View file @
8a341c20
...
@@ -25614,16 +25614,19 @@ usage:
...
@@ -25614,16 +25614,19 @@ usage:
int
Abc_CommandAbc9Hash
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
int
Abc_CommandAbc9Hash
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
{
Gia_Man_t
*
pTemp
;
Gia_Man_t
*
pTemp
;
int
c
;
int
c
,
fCollapse
=
0
;
int
fAddStrash
=
0
;
int
fAddStrash
=
0
;
Extra_UtilGetoptReset
();
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"ah"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"a
c
h"
)
)
!=
EOF
)
{
{
switch
(
c
)
switch
(
c
)
{
{
case
'a'
:
case
'a'
:
fAddStrash
^=
1
;
fAddStrash
^=
1
;
break
;
break
;
case
'c'
:
fCollapse
^=
1
;
break
;
case
'h'
:
case
'h'
:
goto
usage
;
goto
usage
;
default:
default:
...
@@ -25635,14 +25638,24 @@ int Abc_CommandAbc9Hash( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -25635,14 +25638,24 @@ int Abc_CommandAbc9Hash( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
-
1
,
"Abc_CommandAbc9Hash(): There is no AIG.
\n
"
);
Abc_Print
(
-
1
,
"Abc_CommandAbc9Hash(): There is no AIG.
\n
"
);
return
1
;
return
1
;
}
}
if
(
fCollapse
&&
pAbc
->
pGia
->
pAigExtra
)
{
Gia_Man_t
*
pNew
=
Gia_ManDupUnnormalize
(
pAbc
->
pGia
);
pNew
->
pManTime
=
pAbc
->
pGia
->
pManTime
;
pTemp
=
Gia_ManDupCollapse
(
pNew
,
pAbc
->
pGia
->
pAigExtra
,
NULL
);
pNew
->
pManTime
=
NULL
;
Gia_ManStop
(
pNew
);
}
else
pTemp
=
Gia_ManRehash
(
pAbc
->
pGia
,
fAddStrash
);
pTemp
=
Gia_ManRehash
(
pAbc
->
pGia
,
fAddStrash
);
Abc_FrameUpdateGia
(
pAbc
,
pTemp
);
Abc_FrameUpdateGia
(
pAbc
,
pTemp
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage: &st [-ah]
\n
"
);
Abc_Print
(
-
2
,
"usage: &st [-a
c
h]
\n
"
);
Abc_Print
(
-
2
,
"
\t
performs structural hashing
\n
"
);
Abc_Print
(
-
2
,
"
\t
performs structural hashing
\n
"
);
Abc_Print
(
-
2
,
"
\t
-a : toggle additional hashing [default = %s]
\n
"
,
fAddStrash
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-a : toggle additional hashing [default = %s]
\n
"
,
fAddStrash
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-c : toggle collapsing hierarchical AIG [default = %s]
\n
"
,
fCollapse
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
return
1
;
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