changeset 062c820aef24 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=062c820aef24
description:
config: Fix DRAM rank option in sweep script
Align with changes in the common bits.
diffstat:
configs/dram/sweep.py | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diffs (37 lines):
diff -r cb77dfd5db54 -r 062c820aef24 configs/dram/sweep.py
--- a/configs/dram/sweep.py Thu Mar 19 04:06:07 2015 -0400
+++ b/configs/dram/sweep.py Thu Mar 19 04:06:08 2015 -0400
@@ -1,4 +1,4 @@
-# Copyright (c) 2014 ARM Limited
+# Copyright (c) 2014-2015 ARM Limited
# All rights reserved.
#
# The license below extends only to copyright in the software and shall
@@ -58,7 +58,7 @@
choices=MemConfig.mem_names(),
help = "type of memory to use")
-parser.add_option("--ranks", "-r", type="int", default=1,
+parser.add_option("--mem-ranks", "-r", type="int", default=1,
help = "Number of ranks to iterate across")
parser.add_option("--rd_perc", type="int", default=100,
@@ -103,9 +103,6 @@
if not isinstance(system.mem_ctrls[0], m5.objects.DRAMCtrl):
fatal("This script assumes the memory is a DRAMCtrl subclass")
-# Set number of ranks based on input argument; default is 1 rank
-system.mem_ctrls[0].ranks_per_channel = options.ranks
-
# Set the address mapping based on input argument
# Default to RoRaBaCoCh
if options.addr_map == 0:
@@ -162,7 +159,7 @@
(nxt_state, period, options.mode, options.rd_perc,
max_addr, burst_size, itt, itt, 0, stride_size,
page_size, nbr_banks, bank, options.addr_map,
- options.ranks))
+ options.mem_ranks))
nxt_state = nxt_state + 1
cfg_file.write("INIT 0\n")
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev