rwrTemp.c 3.25 KB
Newer Older
Alan Mishchenko committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/**CFile****************************************************************

  FileName    [rwrCut.c]

  SystemName  [ABC: Logic synthesis and verification system.]

  PackageName [DAG-aware AIG rewriting package.]

  Synopsis    [Cut computation.]

  Author      [Alan Mishchenko]
  
  Affiliation [UC Berkeley]

  Date        [Ver. 1.0. Started - June 20, 2005.]

  Revision    [$Id: rwrCut.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]

***********************************************************************/

#include "rwr.h"

23 24 25
ABC_NAMESPACE_IMPL_START


Alan Mishchenko committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
////////////////////////////////////////////////////////////////////////
///                        DECLARATIONS                              ///
////////////////////////////////////////////////////////////////////////

static int pTruths[13719];
static int pFreqs[13719];
static int pPerm[13719];

////////////////////////////////////////////////////////////////////////
///                     FUNCTION DEFINITIONS                         ///
////////////////////////////////////////////////////////////////////////
 
/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Rwr_TempCompare( int * pNum1, int * pNum2 )
{
    int Freq1 = pFreqs[*pNum1];
    int Freq2 = pFreqs[*pNum2];
    if ( Freq1 < Freq2 )
        return 1;
    if ( Freq1 > Freq2 )
        return -1;
    return 0; 
}
 
/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
void Rwr_Temp()
{
    char Buffer[32];
    int nFuncs = 13719;
    int nEntries = 100;
    unsigned uTruth;
    int i, k;
    FILE * pFile;

    pFile = fopen( "nnclass_stats5.txt", "r" );
    for ( i = 0; i < 13719; i++ )
    {
83
        int RetValue = fscanf( pFile, "%s%d", Buffer, &pFreqs[i] );
Alan Mishchenko committed
84 85 86 87 88 89 90 91
        Extra_ReadHexadecimal( &uTruth, Buffer+2, 5 );
        pTruths[i] = uTruth;
    }
    fclose( pFile );

    for ( i = 0; i < 13719; i++ )
        pPerm[i] = i;

92
    qsort( (void *)pPerm, (size_t)13719, sizeof(int), 
Alan Mishchenko committed
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
            (int (*)(const void *, const void *)) Rwr_TempCompare );


    pFile = fopen( "5npn_100.blif", "w" );
    fprintf( pFile, "# Most frequent NPN classes of 5 vars.\n" );
    fprintf( pFile, ".model 5npn\n" );
    fprintf( pFile, ".inputs a b c d e\n" );
    fprintf( pFile, ".outputs" );
    for ( i = 0; i < nEntries; i++ )
        fprintf( pFile, " %02d", i );
    fprintf( pFile, "\n" );

    for ( i = 0; i < nEntries; i++ )
    {
        fprintf( pFile, ".names a b c d e %02d\n", i );
        uTruth = pTruths[pPerm[i]];
        for ( k = 0; k < 32; k++ )
            if ( uTruth & (1 << k) )
            {
112
                Extra_PrintBinary( pFile, (unsigned *)&k, 5 );
Alan Mishchenko committed
113 114 115 116 117 118 119 120 121 122 123 124
                fprintf( pFile, " 1\n" );
            }
    }
    fprintf( pFile, ".end\n" );
    fclose( pFile );
}

////////////////////////////////////////////////////////////////////////
///                       END OF FILE                                ///
////////////////////////////////////////////////////////////////////////


125 126
ABC_NAMESPACE_IMPL_END