diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2014-03-23 11:12:10 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2014-03-23 11:12:10 -0400 |
commit | 3dd1587afc48e8d2b870253de689bbe7262fcbe6 (patch) | |
tree | a521821514c95b8cf285e6f917d3f6f4296ab639 /configs | |
parent | bbbae677ed179c819db124a54a7a011df042ef85 (diff) | |
download | gem5-3dd1587afc48e8d2b870253de689bbe7262fcbe6.tar.xz |
mem: Change memory defaults to be more representative
Make the default memory type DDR3-1600 x64, and use the open-adaptive
page policy. This change is aiming to ensure that users by default are
using a realistic memory system.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/common/Options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/Options.py b/configs/common/Options.py index 209d24357..e5069dc84 100644 --- a/configs/common/Options.py +++ b/configs/common/Options.py @@ -85,7 +85,7 @@ def addCommonOptions(parser): parser.add_option("--list-mem-types", action="callback", callback=_listMemTypes, help="List available memory types") - parser.add_option("--mem-type", type="choice", default="simple_mem", + parser.add_option("--mem-type", type="choice", default="ddr3_1600_x64", choices=MemConfig.mem_names(), help = "type of memory to use") parser.add_option("--mem-channels", type="int", default=1, |