diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2015-04-20 12:46:29 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2015-04-20 12:46:29 -0400 |
commit | 076ea249ae47b935bea424954174f33fdecb7fcc (patch) | |
tree | f57b66ec35776515b82bc5f640780f3c0c3e5031 /configs/dram | |
parent | 803e75cb079f981392bb75feae05dfa343013446 (diff) | |
download | gem5-076ea249ae47b935bea424954174f33fdecb7fcc.tar.xz |
config: Remove memory aliases and rely on class name
Instead of maintaining two lists, rely entirely on the class
name. There is really no point in causing unecessary confusion.
Diffstat (limited to 'configs/dram')
-rw-r--r-- | configs/dram/sweep.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/dram/sweep.py b/configs/dram/sweep.py index 01896da0f..06f3dc76d 100644 --- a/configs/dram/sweep.py +++ b/configs/dram/sweep.py @@ -54,7 +54,7 @@ import MemConfig parser = optparse.OptionParser() # Use a single-channel DDR3-1600 x64 by default -parser.add_option("--mem-type", type="choice", default="ddr3_1600_x64", +parser.add_option("--mem-type", type="choice", default="DDR3_1600_x64", choices=MemConfig.mem_names(), help = "type of memory to use") |