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
1ba16ff7
Commit
1ba16ff7
authored
Sep 27, 2015
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Experiments with LUT structure mapping.
parent
e3eea01d
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
48 additions
and
0 deletions
+48
-0
abclib.dsp
+4
-0
src/aig/gia/gia.h
+3
-0
src/aig/gia/giaOf.c
+0
-0
src/aig/gia/module.make
+1
-0
src/base/abci/abc.c
+0
-0
src/misc/vec/vecInt.h
+40
-0
No files found.
abclib.dsp
View file @
1ba16ff7
...
@@ -4247,6 +4247,10 @@ SOURCE=.\src\aig\gia\giaNf.c
...
@@ -4247,6 +4247,10 @@ SOURCE=.\src\aig\gia\giaNf.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaOf.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaPat.c
SOURCE=.\src\aig\gia\giaPat.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
...
...
src/aig/gia/gia.h
View file @
1ba16ff7
...
@@ -280,6 +280,9 @@ struct Jf_Par_t_
...
@@ -280,6 +280,9 @@ struct Jf_Par_t_
int
nAreaTuner
;
int
nAreaTuner
;
int
nReqTimeFlex
;
int
nReqTimeFlex
;
int
nVerbLimit
;
int
nVerbLimit
;
int
nDelayLut1
;
int
nDelayLut2
;
int
nFastEdges
;
int
DelayTarget
;
int
DelayTarget
;
int
fAreaOnly
;
int
fAreaOnly
;
int
fPinPerm
;
int
fPinPerm
;
...
...
src/aig/gia/giaOf.c
0 → 100644
View file @
1ba16ff7
This diff is collapsed.
Click to expand it.
src/aig/gia/module.make
View file @
1ba16ff7
...
@@ -46,6 +46,7 @@ SRC += src/aig/gia/giaAig.c \
...
@@ -46,6 +46,7 @@ SRC += src/aig/gia/giaAig.c \
src/aig/gia/giaMini.c
\
src/aig/gia/giaMini.c
\
src/aig/gia/giaMuxes.c
\
src/aig/gia/giaMuxes.c
\
src/aig/gia/giaNf.c
\
src/aig/gia/giaNf.c
\
src/aig/gia/giaOf.c
\
src/aig/gia/giaPat.c
\
src/aig/gia/giaPat.c
\
src/aig/gia/giaPf.c
\
src/aig/gia/giaPf.c
\
src/aig/gia/giaQbf.c
\
src/aig/gia/giaQbf.c
\
...
...
src/base/abci/abc.c
View file @
1ba16ff7
This diff is collapsed.
Click to expand it.
src/misc/vec/vecInt.h
View file @
1ba16ff7
...
@@ -1843,6 +1843,20 @@ static inline void Vec_IntSelectSort( int * pArray, int nSize )
...
@@ -1843,6 +1843,20 @@ static inline void Vec_IntSelectSort( int * pArray, int nSize )
pArray
[
best_i
]
=
temp
;
pArray
[
best_i
]
=
temp
;
}
}
}
}
static
inline
void
Vec_IntSelectSortReverse
(
int
*
pArray
,
int
nSize
)
{
int
temp
,
i
,
j
,
best_i
;
for
(
i
=
0
;
i
<
nSize
-
1
;
i
++
)
{
best_i
=
i
;
for
(
j
=
i
+
1
;
j
<
nSize
;
j
++
)
if
(
pArray
[
j
]
>
pArray
[
best_i
]
)
best_i
=
j
;
temp
=
pArray
[
i
];
pArray
[
i
]
=
pArray
[
best_i
];
pArray
[
best_i
]
=
temp
;
}
}
/**Function*************************************************************
/**Function*************************************************************
...
@@ -1867,6 +1881,19 @@ static inline void Vec_IntSelectSortCost( int * pArray, int nSize, Vec_Int_t * v
...
@@ -1867,6 +1881,19 @@ static inline void Vec_IntSelectSortCost( int * pArray, int nSize, Vec_Int_t * v
ABC_SWAP
(
int
,
pArray
[
i
],
pArray
[
best_i
]
);
ABC_SWAP
(
int
,
pArray
[
i
],
pArray
[
best_i
]
);
}
}
}
}
static
inline
void
Vec_IntSelectSortCostReverse
(
int
*
pArray
,
int
nSize
,
Vec_Int_t
*
vCosts
)
{
int
i
,
j
,
best_i
;
for
(
i
=
0
;
i
<
nSize
-
1
;
i
++
)
{
best_i
=
i
;
for
(
j
=
i
+
1
;
j
<
nSize
;
j
++
)
if
(
Vec_IntEntry
(
vCosts
,
pArray
[
j
])
>
Vec_IntEntry
(
vCosts
,
pArray
[
best_i
])
)
best_i
=
j
;
ABC_SWAP
(
int
,
pArray
[
i
],
pArray
[
best_i
]
);
}
}
static
inline
void
Vec_IntSelectSortCost2
(
int
*
pArray
,
int
nSize
,
int
*
pCosts
)
static
inline
void
Vec_IntSelectSortCost2
(
int
*
pArray
,
int
nSize
,
int
*
pCosts
)
{
{
int
i
,
j
,
best_i
;
int
i
,
j
,
best_i
;
...
@@ -1880,6 +1907,19 @@ static inline void Vec_IntSelectSortCost2( int * pArray, int nSize, int * pCosts
...
@@ -1880,6 +1907,19 @@ static inline void Vec_IntSelectSortCost2( int * pArray, int nSize, int * pCosts
ABC_SWAP
(
int
,
pCosts
[
i
],
pCosts
[
best_i
]
);
ABC_SWAP
(
int
,
pCosts
[
i
],
pCosts
[
best_i
]
);
}
}
}
}
static
inline
void
Vec_IntSelectSortCost2Reverse
(
int
*
pArray
,
int
nSize
,
int
*
pCosts
)
{
int
i
,
j
,
best_i
;
for
(
i
=
0
;
i
<
nSize
-
1
;
i
++
)
{
best_i
=
i
;
for
(
j
=
i
+
1
;
j
<
nSize
;
j
++
)
if
(
pCosts
[
j
]
>
pCosts
[
best_i
]
)
best_i
=
j
;
ABC_SWAP
(
int
,
pArray
[
i
],
pArray
[
best_i
]
);
ABC_SWAP
(
int
,
pCosts
[
i
],
pCosts
[
best_i
]
);
}
}
/**Function*************************************************************
/**Function*************************************************************
...
...
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