summaryrefslogtreecommitdiffstats
path: root/src/aig/gia/giaScript.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-09-20 13:15:57 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2014-09-20 13:15:57 -0700
commit29494c3a0012038566a77fe103074c5d04d8564f (patch)
treed12af3d69add317b200f12ec09e767b5258ef1c4 /src/aig/gia/giaScript.c
parenta02b0203568f4c20f50c81e26603c3a5ee4083eb (diff)
downloadabc-29494c3a0012038566a77fe103074c5d04d8564f.tar.gz
abc-29494c3a0012038566a77fe103074c5d04d8564f.tar.bz2
abc-29494c3a0012038566a77fe103074c5d04d8564f.zip
Tuning the flow scripts.
Diffstat (limited to 'src/aig/gia/giaScript.c')
-rw-r--r--src/aig/gia/giaScript.c297
1 files changed, 173 insertions, 124 deletions
diff --git a/src/aig/gia/giaScript.c b/src/aig/gia/giaScript.c
index 475dfea7..5af50b4f 100644
--- a/src/aig/gia/giaScript.c
+++ b/src/aig/gia/giaScript.c
@@ -226,128 +226,6 @@ Gia_Man_t * Gia_ManAigSyn4( Gia_Man_t * p, int fVerbose, int fVeryVerbose )
/**Function*************************************************************
- Synopsis []
-
- Description []
-
- SideEffects []
-
- SeeAlso []
-
-***********************************************************************/
-void Gia_ManPerformMap( int nAnds, int nLutSize, int nCutNum, int fVerbose )
-{
- char Command[200];
- sprintf( Command, "&unmap; &lf -K %d -C %d -k; &save", nLutSize, nCutNum );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
- if ( fVerbose )
- {
- printf( "MAPPING:\n" );
- printf( "Mapping with &lf -k:\n" );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
- }
- sprintf( Command, "&unmap; &lf -K %d -C %d; &save", nLutSize, nCutNum );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
- if ( fVerbose )
- {
- printf( "Mapping with &lf:\n" );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
- }
- if ( (nLutSize == 4 && nAnds < 100000) || (nLutSize == 6 && nAnds < 2000) )
- {
- sprintf( Command, "&unmap; &if -sz -S %d%d -K %d -C %d", nLutSize, nLutSize, 2*nLutSize-1, 2*nCutNum );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
- Vec_IntFreeP( &Abc_FrameReadGia(Abc_FrameGetGlobalFrame())->vPacking );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&save" );
- if ( fVerbose )
- {
- printf( "Mapping with &if -sz -S %d%d -K %d -C %d:\n", nLutSize, nLutSize, 2*nLutSize-1, 2*nCutNum );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
- }
- }
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&load" );
- if ( fVerbose )
- {
- printf( "Mapping final:\n" );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
- }
-}
-void Gia_ManPerformRound( int fIsMapped, int nAnds, int nLevels, int nLutSize, int nCutNum, int nRelaxRatio, int fVerbose )
-{
- char Command[200];
-
- // perform AIG-based synthesis
- if ( nAnds < 50000 )
- {
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "" );
- sprintf( Command, "&dsdb; &dch -f; &if -K %d -C %d; &save", nLutSize, nCutNum );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
- if ( fVerbose )
- {
- printf( "Mapping with &dch -f; &if -K %d -C %d:\n", nLutSize, nCutNum );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
- }
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
- }
-
- // perform AIG-based synthesis
- if ( nAnds < 20000 )
- {
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "" );
- sprintf( Command, "&dsdb; &dch -f; &if -K %d -C %d; &save", nLutSize, nCutNum );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
- if ( fVerbose )
- {
- printf( "Mapping with &dch -f; &if -K %d -C %d:\n", nLutSize, nCutNum );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
- }
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
- }
-
- // perform first round of mapping
- Gia_ManPerformMap( nAnds, nLutSize, nCutNum, fVerbose );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
-
- // perform synthesis
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&dsdb" );
-
- // perform second round of mapping
- Gia_ManPerformMap( nAnds, nLutSize, nCutNum, fVerbose );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
-
- // perform synthesis
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&syn2 -m -R 10; &dsdb" );
-
- // prepare for final mapping
- sprintf( Command, "&blut -a -K %d", nLutSize );
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
-
- // perform third round of mapping
- Gia_ManPerformMap( nAnds, nLutSize, nCutNum, fVerbose );
-}
-void Gia_ManPerformFlow( int fIsMapped, int nAnds, int nLevels, int nLutSize, int nCutNum, int nRelaxRatio, int fVerbose )
-{
- // remove comb equivs
- if ( fIsMapped )
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
- if ( Abc_FrameReadGia(Abc_FrameGetGlobalFrame())->pManTime )
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&sweep" );
- else
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&fraig -c" );
-
- // perform first round
- Gia_ManPerformRound( fIsMapped, nAnds, nLevels, nLutSize, nCutNum, nRelaxRatio, fVerbose );
-
- // perform synthesis
- Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st; &sopb" );
-
- // perform first round
- Gia_ManPerformRound( fIsMapped, nAnds, nLevels, nLutSize, nCutNum, nRelaxRatio, fVerbose );
-}
-
-
-/**Function*************************************************************
-
Synopsis [Duplicates the AIG manager.]
Description [This duplicator works for AIGs with choices.]
@@ -424,8 +302,8 @@ Gia_Man_t * Gia_ManAigSynch2( Gia_Man_t * pInit, void * pPars0, int nLutSize )
pPars->fCutMin = 1;
pPars->fCoarsen = 1;
pPars->nRelaxRatio = 20;
- pPars->nAreaTuner = 1;
- pPars->nCutNum = 4;
+ pPars->nAreaTuner = 5;
+ pPars->nCutNum = 12;
pPars->fVerbose = fVerbose;
if ( fVerbose ) Gia_ManPrintStats( pInit, NULL );
pGia1 = Gia_ManDup( pInit );
@@ -480,6 +358,177 @@ Gia_Man_t * Gia_ManAigSynch2( Gia_Man_t * pInit, void * pPars0, int nLutSize )
return pNew;
}
+/**Function*************************************************************
+
+ Synopsis []
+
+ Description []
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+void Gia_ManPerformMap( int nAnds, int nLutSize, int nCutNum, int fVerbose )
+{
+ char Command[200];
+ sprintf( Command, "&unmap; &lf -K %d -C %d -k; &save", nLutSize, nCutNum );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
+ if ( fVerbose )
+ {
+ printf( "MAPPING:\n" );
+ printf( "Mapping with &lf -k:\n" );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+ }
+ sprintf( Command, "&unmap; &lf -K %d -C %d; &save", nLutSize, nCutNum );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
+ if ( fVerbose )
+ {
+ printf( "Mapping with &lf:\n" );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+ }
+ if ( (nLutSize == 4 && nAnds < 100000) || (nLutSize == 6 && nAnds < 2000) )
+ {
+ sprintf( Command, "&unmap; &if -sz -S %d%d -K %d -C %d", nLutSize, nLutSize, 2*nLutSize-1, 2*nCutNum );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
+ Vec_IntFreeP( &Abc_FrameReadGia(Abc_FrameGetGlobalFrame())->vPacking );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&save" );
+ if ( fVerbose )
+ {
+ printf( "Mapping with &if -sz -S %d%d -K %d -C %d:\n", nLutSize, nLutSize, 2*nLutSize-1, 2*nCutNum );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+ }
+ }
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&load" );
+ if ( fVerbose )
+ {
+ printf( "Mapping final:\n" );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+ }
+}
+void Gia_ManPerformRound( int fIsMapped, int nAnds, int nLevels, int nLutSize, int nCutNum, int fVerbose )
+{
+ char Command[200];
+
+ // perform AIG-based synthesis
+ if ( nAnds < 50000 )
+ {
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "" );
+ sprintf( Command, "&dsdb; &dch -f; &if -K %d -C %d; &save", nLutSize, nCutNum );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
+ if ( fVerbose )
+ {
+ printf( "Mapping with &dch -f; &if -K %d -C %d:\n", nLutSize, nCutNum );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+ }
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
+ }
+
+ // perform AIG-based synthesis
+ if ( nAnds < 20000 )
+ {
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "" );
+ sprintf( Command, "&dsdb; &dch -f; &if -K %d -C %d; &save", nLutSize, nCutNum );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
+ if ( fVerbose )
+ {
+ printf( "Mapping with &dch -f; &if -K %d -C %d:\n", nLutSize, nCutNum );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+ }
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
+ }
+
+ // perform first round of mapping
+ Gia_ManPerformMap( nAnds, nLutSize, nCutNum, fVerbose );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
+
+ // perform synthesis
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&dsdb" );
+
+ // perform second round of mapping
+ Gia_ManPerformMap( nAnds, nLutSize, nCutNum, fVerbose );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
+
+ // perform synthesis
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&syn2 -m -R 10; &dsdb" );
+
+ // prepare for final mapping
+ sprintf( Command, "&blut -a -K %d", nLutSize );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Command );
+
+ // perform third round of mapping
+ Gia_ManPerformMap( nAnds, nLutSize, nCutNum, fVerbose );
+}
+void Gia_ManPerformFlow( int fIsMapped, int nAnds, int nLevels, int nLutSize, int nCutNum, int fVerbose )
+{
+ // remove comb equivs
+ if ( fIsMapped )
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
+// if ( Abc_FrameReadGia(Abc_FrameGetGlobalFrame())->pManTime )
+// Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&sweep" );
+// else
+// Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&fraig -c" );
+
+ // perform first round
+ Gia_ManPerformRound( fIsMapped, nAnds, nLevels, nLutSize, nCutNum, fVerbose );
+
+ // perform synthesis
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st; &sopb" );
+
+ // perform first round
+ Gia_ManPerformRound( fIsMapped, nAnds, nLevels, nLutSize, nCutNum, fVerbose );
+}
+
+/**Function*************************************************************
+
+ Synopsis []
+
+ Description []
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+void Gia_ManPerformFlow2( int fIsMapped, int nAnds, int nLevels, int nLutSize, int nCutNum, int fVerbose )
+{
+ char Comm1[100], Comm2[100];
+ sprintf( Comm1, "&synch2 -K %d; &lf -mk -E 5 -K %d -C %d; &save", nLutSize, nLutSize, nCutNum );
+ sprintf( Comm2, "&dch -f; &lf -mk -E 5 -K %d -C %d; &save", nLutSize, nCutNum+4 );
+
+ // perform synthesis
+ if ( fIsMapped )
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Comm1 );
+ if ( fVerbose )
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+
+ // perform synthesis
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Comm2 );
+ if ( fVerbose )
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+
+ // perform synthesis
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Comm1 );
+ if ( fVerbose )
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+
+ // perform synthesis
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&st" );
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), Comm2 );
+ if ( fVerbose )
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+
+ // perform synthesis
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&load" );
+ if ( fVerbose )
+ Cmd_CommandExecute( Abc_FrameGetGlobalFrame(), "&ps" );
+}
+
+
+
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////