diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2019-02-25 11:55:02 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2019-03-18 15:13:52 +0000 |
commit | fe3e8084959a6910f4c8d075c5c03e40d0269527 (patch) | |
tree | 7e4e43608dfd8d3d5544177e439f57733f3837d8 /configs/common/MemConfig.py | |
parent | 9e22a2ab603d743b187108986cfbeba07c0c0b8d (diff) | |
download | gem5-fe3e8084959a6910f4c8d075c5c03e40d0269527.tar.xz |
configs: Use absolute import paths
Use absoluate import paths to be Python 3 compatible. This also
imports absolute_import from __future__ to ensure that Python 2.7
behaves the same way as Python 3.
Change-Id: Ica06ed95814e9cd3e768b3e1785075e36f6e56d0
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/16708
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'configs/common/MemConfig.py')
-rw-r--r-- | configs/common/MemConfig.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/common/MemConfig.py b/configs/common/MemConfig.py index b6e6663f9..29c41388c 100644 --- a/configs/common/MemConfig.py +++ b/configs/common/MemConfig.py @@ -37,12 +37,13 @@ # Andreas Hansson from __future__ import print_function +from __future__ import absolute_import import m5.objects import inspect import sys -import HMC from textwrap import TextWrapper +from . import HMC # Dictionary of mapping names of real memory controller models to # classes. |