summaryrefslogtreecommitdiff
path: root/configs/dram
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2016-10-14 10:37:38 -0400
committerAndreas Hansson <andreas.hansson@arm.com>2016-10-14 10:37:38 -0400
commit2f5262eb67f0539ab6c07d56eeae1b72f6b6b509 (patch)
tree1261b4decbb504ce2836b77207466c98d6a327a4 /configs/dram
parent824c87634d2d0606f9f62e8a3383c9a056069125 (diff)
downloadgem5-2f5262eb67f0539ab6c07d56eeae1b72f6b6b509.tar.xz
config: Make configs/common a Python package
Continue along the same line as the recent patch that made the Ruby-related config scripts Python packages and make also the configs/common directory a package. All affected config scripts are updated (hopefully). Note that this change makes it apparent that the current organisation and naming of the config directory and its subdirectories is rather chaotic. We mix scripts that are directly invoked with scripts that merely contain convenience functions. While it is not addressed in this patch we should follow up with a re-organisation of the config structure, and renaming of some of the packages.
Diffstat (limited to 'configs/dram')
-rw-r--r--configs/dram/lat_mem_rd.py6
-rw-r--r--configs/dram/sweep.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/configs/dram/lat_mem_rd.py b/configs/dram/lat_mem_rd.py
index 374f1d4be..d4015a522 100644
--- a/configs/dram/lat_mem_rd.py
+++ b/configs/dram/lat_mem_rd.py
@@ -44,8 +44,8 @@ from m5.objects import *
from m5.util import addToPath
from m5.internal.stats import periodicStatDump
-addToPath('../common')
-import MemConfig
+addToPath('../')
+from common import MemConfig
addToPath('../../util')
import protolib
@@ -258,7 +258,7 @@ system.tgen.port = system.monitor.slave
# create the actual cache hierarchy, for now just go with something
# basic to explore some of the options
-from Caches import *
+from common.Caches import *
# a starting point for an L3 cache
class L3Cache(Cache):
diff --git a/configs/dram/sweep.py b/configs/dram/sweep.py
index 368e39488..2797abef0 100644
--- a/configs/dram/sweep.py
+++ b/configs/dram/sweep.py
@@ -42,9 +42,9 @@ from m5.objects import *
from m5.util import addToPath
from m5.internal.stats import periodicStatDump
-addToPath('../common')
+addToPath('../')
-import MemConfig
+from common import MemConfig
# this script is helpful to sweep the efficiency of a specific memory
# controller configuration, by varying the number of banks accessed,