summaryrefslogtreecommitdiff
path: root/configs/learning_gem5/part3/test_caches.py
diff options
context:
space:
mode:
Diffstat (limited to 'configs/learning_gem5/part3/test_caches.py')
-rw-r--r--configs/learning_gem5/part3/test_caches.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/configs/learning_gem5/part3/test_caches.py b/configs/learning_gem5/part3/test_caches.py
index 3721f4a6b..4b17250ff 100644
--- a/configs/learning_gem5/part3/test_caches.py
+++ b/configs/learning_gem5/part3/test_caches.py
@@ -36,12 +36,15 @@ IMPORTANT: If you modify this file, it's likely that the Learning gem5 book
"""
+from __future__ import print_function
+from __future__ import absolute_import
+
from m5.defines import buildEnv
from m5.util import fatal
from m5.objects import *
-from msi_caches import L1Cache, DirController, MyNetwork
+from .msi_caches import L1Cache, DirController, MyNetwork
class TestCacheSystem(RubySystem):