sweep.py (11223:2981e399c816) sweep.py (11251:a15c86af004a)
1# Copyright (c) 2014-2015 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 87 unchanged lines hidden (view full) ---

96# do not worry about reserving space for the backing store
97system.mmap_using_noreserve = True
98
99# force a single channel to match the assumptions in the DRAM traffic
100# generator
101options.mem_channels = 1
102options.external_memory_system = 0
103options.tlm_memory = 0
1# Copyright (c) 2014-2015 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 87 unchanged lines hidden (view full) ---

96# do not worry about reserving space for the backing store
97system.mmap_using_noreserve = True
98
99# force a single channel to match the assumptions in the DRAM traffic
100# generator
101options.mem_channels = 1
102options.external_memory_system = 0
103options.tlm_memory = 0
104options.elastic_trace_en = 0
104MemConfig.config_mem(options, system)
105
106# the following assumes that we are using the native DRAM
107# controller, check to be sure
108if not isinstance(system.mem_ctrls[0], m5.objects.DRAMCtrl):
109 fatal("This script assumes the memory is a DRAMCtrl subclass")
110
111# there is no point slowing things down by saving any data

--- 96 unchanged lines hidden ---
105MemConfig.config_mem(options, system)
106
107# the following assumes that we are using the native DRAM
108# controller, check to be sure
109if not isinstance(system.mem_ctrls[0], m5.objects.DRAMCtrl):
110 fatal("This script assumes the memory is a DRAMCtrl subclass")
111
112# there is no point slowing things down by saving any data

--- 96 unchanged lines hidden ---