low_power_sweep.py (12267:e523442346c5) low_power_sweep.py (12268:54566b73dc61)
1# Copyright (c) 2014-2015, 2017 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

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

38
39import argparse
40
41import m5
42from m5.objects import *
43from m5.util import addToPath
44from m5.stats import periodicStatDump
45
1# Copyright (c) 2014-2015, 2017 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

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

38
39import argparse
40
41import m5
42from m5.objects import *
43from m5.util import addToPath
44from m5.stats import periodicStatDump
45
46addToPath('../common')
46addToPath(os.getcwd() + '/configs/common')
47import MemConfig
48
49# This script aims at triggering low power state transitions in the DRAM
50# controller. The traffic generator is used in DRAM mode and traffic
51# states target a different levels of bank utilization and strides.
52# At the end after sweeping through bank utilization and strides, we go
53# through an idle state with no requests to enforce self-refresh.
54

--- 197 unchanged lines hidden ---
47import MemConfig
48
49# This script aims at triggering low power state transitions in the DRAM
50# controller. The traffic generator is used in DRAM mode and traffic
51# states target a different levels of bank utilization and strides.
52# At the end after sweeping through bank utilization and strides, we go
53# through an idle state with no requests to enforce self-refresh.
54

--- 197 unchanged lines hidden ---