diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-03-21 21:22:21 -0700 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-03-21 21:22:21 -0700 |
commit | 92cfd1cac7f6f2d0abf64808f08f063cd0db1263 (patch) | |
tree | a69a2964f7342083cd8aaca5ed32df207a1edea8 /configs/common | |
parent | b5e4c3cbf2de32e18029b44b16b307a773b6ecf7 (diff) | |
download | gem5-92cfd1cac7f6f2d0abf64808f08f063cd0db1263.tar.xz |
ruby: Ruby support for sparse memory
The patch includes direct support for the MI example protocol.
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/Options.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configs/common/Options.py b/configs/common/Options.py index 7d1b0e745..b0153f453 100644 --- a/configs/common/Options.py +++ b/configs/common/Options.py @@ -43,7 +43,11 @@ 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, help="'fixed'|'flexible'") - + +# ruby sparse memory options +parser.add_option("--use-map", action="store_true", default=False) +parser.add_option("--map-levels", type="int", default=4) + # Run duration options parser.add_option("-m", "--maxtick", type="int", default=m5.MaxTick, metavar="T", |