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
ed2f0ef3
Commit
ed2f0ef3
authored
Apr 19, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding color to sizing stats.
parent
606fed3b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
src/map/scl/sclSize.c
+26
-0
No files found.
src/map/scl/sclSize.c
View file @
ed2f0ef3
...
@@ -23,6 +23,10 @@
...
@@ -23,6 +23,10 @@
#include "misc/vec/vecWec.h"
#include "misc/vec/vecWec.h"
#include "base/main/main.h"
#include "base/main/main.h"
#ifdef WIN32
#include <windows.h>
#endif
ABC_NAMESPACE_IMPL_START
ABC_NAMESPACE_IMPL_START
...
@@ -137,16 +141,38 @@ void Abc_SclTimeNtkPrint( SC_Man * p, int fShowAll, int fPrintPath )
...
@@ -137,16 +141,38 @@ void Abc_SclTimeNtkPrint( SC_Man * p, int fShowAll, int fPrintPath )
float
maxDelay
=
Abc_SclObjTimeOne
(
p
,
pPivot
,
fRise
);
float
maxDelay
=
Abc_SclObjTimeOne
(
p
,
pPivot
,
fRise
);
p
->
ReportDelay
=
maxDelay
;
p
->
ReportDelay
=
maxDelay
;
#ifdef WIN32
printf
(
"WireLoad =
\"
%s
\"
"
,
p
->
pWLoadUsed
?
p
->
pWLoadUsed
->
pName
:
"none"
);
printf
(
"WireLoad =
\"
%s
\"
"
,
p
->
pWLoadUsed
?
p
->
pWLoadUsed
->
pName
:
"none"
);
SetConsoleTextAttribute
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
14
);
// yellow
printf
(
"Gates =%7d "
,
Abc_NtkNodeNum
(
p
->
pNtk
)
);
printf
(
"Gates =%7d "
,
Abc_NtkNodeNum
(
p
->
pNtk
)
);
SetConsoleTextAttribute
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
7
);
// normal
printf
(
"(%5.1f %%) "
,
100
.
0
*
Abc_SclGetBufInvCount
(
p
->
pNtk
)
/
Abc_NtkNodeNum
(
p
->
pNtk
)
);
printf
(
"(%5.1f %%) "
,
100
.
0
*
Abc_SclGetBufInvCount
(
p
->
pNtk
)
/
Abc_NtkNodeNum
(
p
->
pNtk
)
);
SetConsoleTextAttribute
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
10
);
// green
printf
(
"Cap =%5.1f ff "
,
p
->
EstLoadAve
);
printf
(
"Cap =%5.1f ff "
,
p
->
EstLoadAve
);
SetConsoleTextAttribute
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
7
);
// normal
printf
(
"(%5.1f %%) "
,
Abc_SclGetAverageSize
(
p
->
pNtk
)
);
printf
(
"(%5.1f %%) "
,
Abc_SclGetAverageSize
(
p
->
pNtk
)
);
SetConsoleTextAttribute
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
11
);
// blue
printf
(
"Area =%12.2f "
,
Abc_SclGetTotalArea
(
p
->
pNtk
)
);
printf
(
"Area =%12.2f "
,
Abc_SclGetTotalArea
(
p
->
pNtk
)
);
SetConsoleTextAttribute
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
7
);
// normal
printf
(
"(%5.1f %%) "
,
100
.
0
*
Abc_SclCountMinSize
(
p
->
pLib
,
p
->
pNtk
,
0
)
/
Abc_NtkNodeNum
(
p
->
pNtk
)
);
printf
(
"(%5.1f %%) "
,
100
.
0
*
Abc_SclCountMinSize
(
p
->
pLib
,
p
->
pNtk
,
0
)
/
Abc_NtkNodeNum
(
p
->
pNtk
)
);
SetConsoleTextAttribute
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
13
);
// magenta
printf
(
"Delay =%9.2f ps "
,
maxDelay
);
printf
(
"Delay =%9.2f ps "
,
maxDelay
);
SetConsoleTextAttribute
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
7
);
// normal
printf
(
"(%5.1f %%) "
,
100
.
0
*
Abc_SclCountNearCriticalNodes
(
p
)
/
Abc_NtkNodeNum
(
p
->
pNtk
)
);
printf
(
"(%5.1f %%) "
,
100
.
0
*
Abc_SclCountNearCriticalNodes
(
p
)
/
Abc_NtkNodeNum
(
p
->
pNtk
)
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
#else
Abc_Print
(
1
,
"WireLoad =
\"
%s
\"
"
,
p
->
pWLoadUsed
?
p
->
pWLoadUsed
->
pName
:
"none"
);
Abc_Print
(
1
,
"%sGates =%7d%s "
,
"
\033
[1;33m"
,
Abc_NtkNodeNum
(
p
->
pNtk
),
"
\033
[1;36m"
);
// yellow
Abc_Print
(
1
,
"(%5.1f %%) "
,
100
.
0
*
Abc_SclGetBufInvCount
(
p
->
pNtk
)
/
Abc_NtkNodeNum
(
p
->
pNtk
)
);
Abc_Print
(
1
,
"%sCap =%5.1f ff%s "
,
"
\033
[1;32m"
,
p
->
EstLoadAve
,
"
\033
[1;36m"
);
// green
Abc_Print
(
1
,
"(%5.1f %%) "
,
Abc_SclGetAverageSize
(
p
->
pNtk
)
);
Abc_Print
(
1
,
"%sArea =%12.2f%s "
,
"
\033
[1;36m"
,
Abc_SclGetTotalArea
(
p
->
pNtk
),
"
\033
[1;35m"
);
// blue
Abc_Print
(
1
,
"(%5.1f %%) "
,
100
.
0
*
Abc_SclCountMinSize
(
p
->
pLib
,
p
->
pNtk
,
0
)
/
Abc_NtkNodeNum
(
p
->
pNtk
)
);
Abc_Print
(
1
,
"%sDelay =%9.2f ps%s "
,
"
\033
[1;35m"
,
maxDelay
,
"
\033
[1;35m"
);
// magenta
Abc_Print
(
1
,
"(%5.1f %%) "
,
100
.
0
*
Abc_SclCountNearCriticalNodes
(
p
)
/
Abc_NtkNodeNum
(
p
->
pNtk
)
);
Abc_Print
(
1
,
"
\n
"
);
#endif
if
(
fShowAll
)
if
(
fShowAll
)
{
{
// printf( "Timing information for all nodes: \n" );
// printf( "Timing information for all nodes: \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