diff options
Diffstat (limited to 'src/mem/DRAMCtrl.py')
-rw-r--r-- | src/mem/DRAMCtrl.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mem/DRAMCtrl.py b/src/mem/DRAMCtrl.py index f78a7370d..fa04c9f39 100644 --- a/src/mem/DRAMCtrl.py +++ b/src/mem/DRAMCtrl.py @@ -47,6 +47,7 @@ from m5.params import * from m5.proxy import * from AbstractMemory import * +from QoSMemCtrl import * # Enum for memory scheduling algorithms, currently First-Come # First-Served and a First-Row Hit then First-Come First-Served @@ -69,7 +70,7 @@ class PageManage(Enum): vals = ['open', 'open_adaptive', 'close', # that aims to model the most important system-level performance # effects of a DRAM without getting into too much detail of the DRAM # itself. -class DRAMCtrl(AbstractMemory): +class DRAMCtrl(QoSMemCtrl): type = 'DRAMCtrl' cxx_header = "mem/dram_ctrl.hh" |