sweep.py (11682:612f75cf36a0) sweep.py (11766:7c95caf53250)
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

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

35#
36# Authors: Andreas Hansson
37
38import optparse
39
40import m5
41from m5.objects import *
42from m5.util import addToPath
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

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

35#
36# Authors: Andreas Hansson
37
38import optparse
39
40import m5
41from m5.objects import *
42from m5.util import addToPath
43from m5.internal.stats import periodicStatDump
43from m5.stats import periodicStatDump
44
45addToPath('../')
46
47from common import MemConfig
48
49# this script is helpful to sweep the efficiency of a specific memory
50# controller configuration, by varying the number of banks accessed,
51# and the sequential stride size (how many bytes per activate), and

--- 157 unchanged lines hidden ---
44
45addToPath('../')
46
47from common import MemConfig
48
49# this script is helpful to sweep the efficiency of a specific memory
50# controller configuration, by varying the number of banks accessed,
51# and the sequential stride size (how many bytes per activate), and

--- 157 unchanged lines hidden ---