diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-04-24 14:51:34 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-04-24 14:51:34 -0700 |
commit | 9e20b3016ddb16993687cffc050c3cee127f677d (patch) | |
tree | f92058fe08605320b4a3ed42318821c5fafed29e /src/map/mapper/mapperInt.h | |
parent | 3708acbf469432e540fe5075f746028fcdaa27cb (diff) | |
download | abc-9e20b3016ddb16993687cffc050c3cee127f677d.tar.gz abc-9e20b3016ddb16993687cffc050c3cee127f677d.tar.bz2 abc-9e20b3016ddb16993687cffc050c3cee127f677d.zip |
Adding switch 'map -f' to not use large gates for high-fanout nodes (disabled by default).
Diffstat (limited to 'src/map/mapper/mapperInt.h')
-rw-r--r-- | src/map/mapper/mapperInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/mapper/mapperInt.h b/src/map/mapper/mapperInt.h index cd6ac81c..fdfece30 100644 --- a/src/map/mapper/mapperInt.h +++ b/src/map/mapper/mapperInt.h @@ -120,7 +120,8 @@ struct Map_ManStruct_t_ int fObeyFanoutLimits;// Should mapper try to obey fanout limits or not float DelayTarget; // the required times set by the user int nTravIds; // the traversal counter - int fSwitching; // Should mapper try to obey fanout limits or not + int fSwitching; // use switching activity + int fSkipFanout; // skip large gates when mapping high-fanout nodes // the supergate library Map_SuperLib_t * pSuperLib; // the current supergate library |