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
e0eb2703
Commit
e0eb2703
authored
Sep 18, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes to command 'upsize'.
parent
508b6f1b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
72 additions
and
18 deletions
+72
-18
src/base/abc/abc.h
+3
-0
src/map/scl/scl.c
+28
-15
src/map/scl/sclFile.c
+1
-0
src/map/scl/sclInt.h
+2
-1
src/map/scl/sclMan.h
+1
-1
src/map/scl/sclSize.c
+1
-1
src/map/scl/sclUpsize.c
+0
-0
src/misc/vec/vecFlt.h
+36
-0
No files found.
src/base/abc/abc.h
View file @
e0eb2703
...
...
@@ -457,6 +457,9 @@ static inline void Abc_ObjSetMvVar( Abc_Obj_t * pObj, void * pV) { Vec_At
#define Abc_NtkForEachObjVec( vIds, pNtk, pObj, i ) \
for ( i = 0; i < Vec_IntSize(vIds) && (((pObj) = Abc_NtkObj(pNtk, Vec_IntEntry(vIds,i))), 1); i++ ) \
if ( (pObj) == NULL ) {} else
#define Abc_NtkForEachObjVecStart( vIds, pNtk, pObj, i, Start ) \
for ( i = Start; i < Vec_IntSize(vIds) && (((pObj) = Abc_NtkObj(pNtk, Vec_IntEntry(vIds,i))), 1); i++ ) \
if ( (pObj) == NULL ) {} else
#define Abc_NtkForEachNet( pNtk, pNet, i ) \
for ( i = 0; (i < Vec_PtrSize((pNtk)->vObjs)) && (((pNet) = Abc_NtkObj(pNtk, i)), 1); i++ ) \
if ( (pNet) == NULL || !Abc_ObjIsNet(pNet) ) {} else
...
...
src/map/scl/scl.c
View file @
e0eb2703
...
...
@@ -642,34 +642,46 @@ usage:
int
Scl_CommandUpsize
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
Abc_Ntk_t
*
pNtk
=
Abc_FrameReadNtk
(
pAbc
);
int
Degree
=
2
;
int
nRange
=
5
;
int
Window
=
5
;
int
Ratio
=
5
;
int
nIters
=
20
;
int
c
,
fVerbose
=
0
;
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"
NW
vh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"
WRI
vh"
)
)
!=
EOF
)
{
switch
(
c
)
{
case
'
N
'
:
case
'
W
'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-
N
\"
should be followed by a positive integer.
\n
"
);
Abc_Print
(
-
1
,
"Command line switch
\"
-
W
\"
should be followed by a positive integer.
\n
"
);
goto
usage
;
}
Degree
=
atoi
(
argv
[
globalUtilOptind
]);
Window
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
Degree
<
0
)
if
(
Window
<
0
)
goto
usage
;
break
;
case
'
W
'
:
case
'
R
'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-W
\"
should be followed by a positive integer.
\n
"
);
Abc_Print
(
-
1
,
"Command line switch
\"
-R
\"
should be followed by a positive integer.
\n
"
);
goto
usage
;
}
Ratio
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
Ratio
<
0
)
goto
usage
;
break
;
case
'I'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-I
\"
should be followed by a positive integer.
\n
"
);
goto
usage
;
}
n
Range
=
atoi
(
argv
[
globalUtilOptind
]);
n
Iters
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
n
Range
<
0
)
if
(
n
Iters
<
0
)
goto
usage
;
break
;
case
'v'
:
...
...
@@ -703,14 +715,15 @@ int Scl_CommandUpsize( Abc_Frame_t * pAbc, int argc, char **argv )
return
1
;
}
Abc_SclUpsiz
ingPerform
(
pAbc
->
pLibScl
,
pNtk
,
Degree
,
nRange
,
fVerbose
);
Abc_SclUpsiz
ePerform
(
pAbc
->
pLibScl
,
pNtk
,
Window
,
Ratio
,
nIters
,
fVerbose
);
return
0
;
usage:
fprintf
(
pAbc
->
Err
,
"usage: upsize [-
NW
num] [-vh]
\n
"
);
fprintf
(
pAbc
->
Err
,
"usage: upsize [-
WRI
num] [-vh]
\n
"
);
fprintf
(
pAbc
->
Err
,
"
\t
selectively increases gate sizes in timing-critical regions
\n
"
);
fprintf
(
pAbc
->
Err
,
"
\t
-N <num> : the max fanout count of gates to upsize [default = %d]
\n
"
,
Degree
);
fprintf
(
pAbc
->
Err
,
"
\t
-W <num> : delay window (in percents) of near-critical COs [default = %d]
\n
"
,
nRange
);
fprintf
(
pAbc
->
Err
,
"
\t
-W <num> : delay window (in percents) of near-critical COs [default = %d]
\n
"
,
Window
);
fprintf
(
pAbc
->
Err
,
"
\t
-R <num> : ratio of critical nodes (in percents) to update [default = %d]
\n
"
,
Ratio
);
fprintf
(
pAbc
->
Err
,
"
\t
-I <num> : the number of upsizing iterations to perform [default = %d]
\n
"
,
nIters
);
fprintf
(
pAbc
->
Err
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
fprintf
(
pAbc
->
Err
,
"
\t
-h : print the command usage
\n
"
);
return
1
;
...
...
src/map/scl/sclFile.c
View file @
e0eb2703
...
...
@@ -121,6 +121,7 @@ static void Abc_SclReadLibrary( Vec_Str_t * vOut, int * pPos, SC_Lib * p )
for
(
i
=
Vec_StrGetI
(
vOut
,
pPos
);
i
!=
0
;
i
--
)
{
SC_Cell
*
pCell
=
Abc_SclCellAlloc
();
pCell
->
Id
=
Vec_PtrSize
(
p
->
vCells
);
Vec_PtrPush
(
p
->
vCells
,
pCell
);
pCell
->
pName
=
Vec_StrGetS
(
vOut
,
pPos
);
...
...
src/map/scl/sclInt.h
View file @
e0eb2703
...
...
@@ -155,6 +155,7 @@ struct SC_Pin_
struct
SC_Cell_
{
char
*
pName
;
int
Id
;
int
seq
;
// -- set to TRUE by parser if a sequential element
int
unsupp
;
// -- set to TRUE by parser if cell contains information we cannot handle
float
area
;
...
...
@@ -436,7 +437,7 @@ extern void Abc_SclTimePerform( SC_Lib * pLib, Abc_Ntk_t * pNtk, int fUse
/*=== sclSize.c =============================================================*/
extern
void
Abc_SclSizingPerform
(
SC_Lib
*
pLib
,
Abc_Ntk_t
*
pNtk
,
SC_SizePars
*
p
);
/*=== sclUpsize.c =============================================================*/
extern
void
Abc_SclUpsiz
ingPerform
(
SC_Lib
*
pLib
,
Abc_Ntk_t
*
pNtk
,
int
Degree
,
int
nRange
,
int
fVerbose
);
extern
void
Abc_SclUpsiz
ePerform
(
SC_Lib
*
pLib
,
Abc_Ntk_t
*
pNtk
,
int
Window
,
int
Ratio
,
int
nIters
,
int
fVerbose
);
/*=== sclUtil.c =============================================================*/
extern
void
Abc_SclHashCells
(
SC_Lib
*
p
);
extern
int
Abc_SclCellFind
(
SC_Lib
*
p
,
char
*
pName
);
...
...
src/map/scl/sclMan.h
View file @
e0eb2703
...
...
@@ -200,7 +200,7 @@ static inline float Abc_SclGetMaxDelay( SC_Man * p )
fMaxArr
=
Abc_MaxFloat
(
fMaxArr
,
Abc_SclObjTimeMax
(
p
,
pObj
)
);
return
fMaxArr
;
}
static
inline
float
Abc_SclGetMaxDelayNode
(
SC_Man
*
p
,
Abc_Obj_t
*
pNode
)
static
inline
float
Abc_SclGetMaxDelayNode
Fanins
(
SC_Man
*
p
,
Abc_Obj_t
*
pNode
)
{
float
fMaxArr
=
0
;
Abc_Obj_t
*
pObj
;
...
...
src/map/scl/sclSize.c
View file @
e0eb2703
...
...
@@ -103,7 +103,7 @@ void Abc_SclFindCriticalCone_rec( SC_Man * p, Abc_Obj_t * pObj, Vec_Int_t * vVis
Abc_NodeSetTravIdCurrent
(
pObj
);
assert
(
Abc_ObjIsNode
(
pObj
)
);
// compute timing critical fanin
fArrMax
=
Abc_SclGetMaxDelayNode
(
p
,
pObj
)
*
(
100
.
0
-
RangeF
)
/
100
.
0
;
fArrMax
=
Abc_SclGetMaxDelayNode
Fanins
(
p
,
pObj
)
*
(
100
.
0
-
RangeF
)
/
100
.
0
;
// traverse all fanins whose arrival times are within a window
Abc_ObjForEachFanin
(
pObj
,
pNext
,
i
)
if
(
Abc_SclObjTimeMax
(
p
,
pNext
)
>=
fArrMax
)
...
...
src/map/scl/sclUpsize.c
View file @
e0eb2703
This diff is collapsed.
Click to expand it.
src/misc/vec/vecFlt.h
View file @
e0eb2703
...
...
@@ -619,6 +619,42 @@ static inline int Vec_FltRemove( Vec_Flt_t * p, float Entry )
/**Function*************************************************************
Synopsis [Find entry.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
static
inline
float
Vec_FltFindMax
(
Vec_Flt_t
*
p
)
{
int
i
;
float
Best
;
if
(
p
->
nSize
==
0
)
return
0
;
Best
=
p
->
pArray
[
0
];
for
(
i
=
1
;
i
<
p
->
nSize
;
i
++
)
if
(
Best
<
p
->
pArray
[
i
]
)
Best
=
p
->
pArray
[
i
];
return
Best
;
}
static
inline
float
Vec_FltFindMin
(
Vec_Flt_t
*
p
)
{
int
i
;
float
Best
;
if
(
p
->
nSize
==
0
)
return
0
;
Best
=
p
->
pArray
[
0
];
for
(
i
=
1
;
i
<
p
->
nSize
;
i
++
)
if
(
Best
>
p
->
pArray
[
i
]
)
Best
=
p
->
pArray
[
i
];
return
Best
;
}
/**Function*************************************************************
Synopsis [Comparison procedure for two floats.]
Description []
...
...
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