summaryrefslogtreecommitdiffstats
path: root/src/map/scl/sclLoad.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-12-13 12:37:04 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2014-12-13 12:37:04 -0800
commitaadfea8b4d51cace643b3033b725e0f49ee54fb0 (patch)
tree43a2ee1e370f9f18369ea54e444a068b4d567fdb /src/map/scl/sclLoad.c
parentb379b3ee20266a4dcfc11f9113326f764846d79e (diff)
downloadabc-aadfea8b4d51cace643b3033b725e0f49ee54fb0.tar.gz
abc-aadfea8b4d51cace643b3033b725e0f49ee54fb0.tar.bz2
abc-aadfea8b4d51cace643b3033b725e0f49ee54fb0.zip
Integrating barrier buffers.
Diffstat (limited to 'src/map/scl/sclLoad.c')
-rw-r--r--src/map/scl/sclLoad.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/map/scl/sclLoad.c b/src/map/scl/sclLoad.c
index f23bf7f9..a30a411e 100644
--- a/src/map/scl/sclLoad.c
+++ b/src/map/scl/sclLoad.c
@@ -154,6 +154,15 @@ void Abc_SclComputeLoad( SC_Man * p )
printf( "Maximum input drive strength is exceeded at primary input %d.\n", i );
}
}
+/*
+ // transfer load from barbufs
+ Abc_NtkForEachBarBuf( p->pNtk, pObj, i )
+ {
+ SC_Pair * pLoad = Abc_SclObjLoad( p, pObj );
+ SC_Pair * pLoadF = Abc_SclObjLoad( p, Abc_ObjFanin(pObj, 0) );
+ SC_PairAdd( pLoadF, pLoad );
+ }
+*/
// calculate average load
// if ( p->EstLoadMax )
{