diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2014-12-13 12:37:04 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2014-12-13 12:37:04 -0800 |
commit | aadfea8b4d51cace643b3033b725e0f49ee54fb0 (patch) | |
tree | 43a2ee1e370f9f18369ea54e444a068b4d567fdb /src/map/scl/sclLoad.c | |
parent | b379b3ee20266a4dcfc11f9113326f764846d79e (diff) | |
download | abc-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.c | 9 |
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 ) { |