diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-03-21 21:22:22 -0700 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-03-21 21:22:22 -0700 |
commit | 898f1fc4a45454f5d70ef64de3c4b4caf686677a (patch) | |
tree | 6e3da37823d4f7b671263a715fc90190c6cb306e /configs/common/Options.py | |
parent | 61e6b9e701c25537319e91b74362b962616ffee6 (diff) | |
download | gem5-898f1fc4a45454f5d70ef64de3c4b4caf686677a.tar.xz |
ruby: Reorganized Ruby topology and protocol files
--HG--
rename : configs/ruby/MESI_CMP_directory.py => configs/ruby/protocols/MESI_CMP_directory.py
rename : configs/ruby/MI_example.py => configs/ruby/protocols/MI_example.py
rename : configs/ruby/MOESI_CMP_directory.py => configs/ruby/protocols/MOESI_CMP_directory.py
rename : configs/ruby/MOESI_CMP_token.py => configs/ruby/protocols/MOESI_CMP_token.py
rename : configs/ruby/MOESI_hammer.py => configs/ruby/protocols/MOESI_hammer.py
rename : configs/ruby/networks/MeshDirCorners.py => src/mem/ruby/network/topologies/MeshDirCorners.py
Diffstat (limited to 'configs/common/Options.py')
-rw-r--r-- | configs/common/Options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/common/Options.py b/configs/common/Options.py index e7ab0d86b..0bbc186e4 100644 --- a/configs/common/Options.py +++ b/configs/common/Options.py @@ -37,8 +37,8 @@ parser.add_option("--fastmem", action="store_true") parser.add_option("--clock", action="store", type="string", default='1GHz') parser.add_option("--num-dirs", type="int", default=1) parser.add_option("--num-l2caches", type="int", default=1) -parser.add_option("--topology", type="string", default="crossbar", - help="'crossbar'|'mesh'") +parser.add_option("--topology", type="string", default="Crossbar", + help="check src/mem/ruby/network/topologies for complete set") parser.add_option("--mesh-rows", type="int", default=1, help="the number of rows in the mesh topology") parser.add_option("--garnet-network", type="string", default=none, |