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
508b6f1b
Commit
508b6f1b
authored
Sep 18, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing mismatch between declaration of the output value of Extra_CpuTime.
parent
6dc3a0a2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
src/base/abci/abc.c
+7
-3
src/misc/extra/extra.h
+1
-1
src/misc/util/util_hack.h
+1
-1
No files found.
src/base/abci/abc.c
View file @
508b6f1b
...
...
@@ -100,7 +100,7 @@ static int Abc_CommandEliminate ( Abc_Frame_t * pAbc, int argc, cha
static
int
Abc_CommandDisjoint
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandLutpack
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandLutmin
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandImfs
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
//
static int Abc_CommandImfs ( Abc_Frame_t * pAbc, int argc, char ** argv );
static
int
Abc_CommandMfs
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandTrace
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandSpeedup
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
...
...
@@ -552,7 +552,7 @@ void Abc_Init( Abc_Frame_t * pAbc )
Cmd_CommandAdd
(
pAbc
,
"Synthesis"
,
"dsd"
,
Abc_CommandDisjoint
,
1
);
Cmd_CommandAdd
(
pAbc
,
"Synthesis"
,
"lutpack"
,
Abc_CommandLutpack
,
1
);
Cmd_CommandAdd
(
pAbc
,
"Synthesis"
,
"lutmin"
,
Abc_CommandLutmin
,
1
);
Cmd_CommandAdd
(
pAbc
,
"Synthesis"
,
"imfs"
,
Abc_CommandImfs
,
1
);
//
Cmd_CommandAdd( pAbc, "Synthesis", "imfs", Abc_CommandImfs, 1 );
Cmd_CommandAdd
(
pAbc
,
"Synthesis"
,
"mfs"
,
Abc_CommandMfs
,
1
);
Cmd_CommandAdd
(
pAbc
,
"Synthesis"
,
"trace"
,
Abc_CommandTrace
,
0
);
Cmd_CommandAdd
(
pAbc
,
"Synthesis"
,
"speedup"
,
Abc_CommandSpeedup
,
1
);
...
...
@@ -3945,6 +3945,8 @@ usage:
return
1
;
}
#if 0
/**Function*************************************************************
Synopsis []
...
...
@@ -4069,6 +4071,8 @@ usage:
return 1;
}
#endif
/**Function*************************************************************
Synopsis []
...
...
@@ -8899,7 +8903,7 @@ usage:
Abc_Print
(
-
2
,
"
\t
(a)
\"
miter -i <onset.blif> <inter.blif>; iprove
\"\n
"
);
Abc_Print
(
-
2
,
"
\t
(b)
\"
miter -i <inter.blif> <offset_inv.blif>; iprove
\"\n
"
);
Abc_Print
(
-
2
,
"
\t
where <offset_inv.blif> is the network derived by complementing the
\n
"
);
Abc_Print
(
-
2
,
"
\t
outputs of <offset.blif>:
\"
r <o
n
set.blif>; st -i; w <offset_inv.blif>
\"\n
"
);
Abc_Print
(
-
2
,
"
\t
outputs of <offset.blif>:
\"
r <o
ff
set.blif>; st -i; w <offset_inv.blif>
\"\n
"
);
return
1
;
}
...
...
src/misc/extra/extra.h
View file @
508b6f1b
...
...
@@ -371,7 +371,7 @@ extern unsigned Extra_TruthSemiCanonicize( unsigned * pInOut, unsigned * pAux
/*=== extraUtilUtil.c ================================================================*/
extern
long
Extra_CpuTime
();
extern
clock_t
Extra_CpuTime
();
extern
double
Extra_CpuTimeDouble
();
extern
int
Extra_GetSoftDataLimit
();
extern
ABC_DLL
void
Extra_UtilGetoptReset
();
...
...
src/misc/util/util_hack.h
View file @
508b6f1b
...
...
@@ -37,7 +37,7 @@ ABC_NAMESPACE_HEADER_START
#define getSoftDataLimit Extra_GetSoftDataLimit
#define MMoutOfMemory Extra_UtilMMoutOfMemory
extern
long
Extra_CpuTime
();
extern
clock_t
Extra_CpuTime
();
extern
int
Extra_GetSoftDataLimit
();
extern
void
(
*
Extra_UtilMMoutOfMemory
)(
long
size
);
...
...
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