diff options
author | Iru Cai <mytbk920423@gmail.com> | 2019-03-13 10:24:44 +0800 |
---|---|---|
committer | Iru Cai <mytbk920423@gmail.com> | 2019-03-13 10:24:44 +0800 |
commit | 888e93ff66c3dd61365ee309e0915b24d87cb276 (patch) | |
tree | cb9d733e31a5c79ebb3ac2b90db468829db5bfec | |
parent | d44b083fee4ccb14c5196c9bbb89c04355808f71 (diff) | |
download | gem5-is-rebase-new.tar.xz |
update configs/common/CpuConfig.py after rebaseis-rebase-new
Change-Id: Id9f75cba7f50238d4621c8c6e31e0b5b5553fa08
-rw-r--r-- | configs/common/CpuConfig.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configs/common/CpuConfig.py b/configs/common/CpuConfig.py index 5d70f46df..653220528 100644 --- a/configs/common/CpuConfig.py +++ b/configs/common/CpuConfig.py @@ -96,10 +96,10 @@ def config_scheme(cpu_cls, cpu_list, options): fatal("Need to provide needsTSO and scheme " "to run simulation with DerivO3CPU") - print "**********" - print "info: Configure for DerivO3CPU. needsTSO=%d; scheme=%s"\ - % (options.needsTSO, options.scheme) - print "**********" + print("**********") + print("info: Configure for DerivO3CPU. needsTSO=%d; scheme=%s"\ + % (options.needsTSO, options.scheme)) + print("**********") for cpu in cpu_list: if options.needsTSO: cpu.needsTSO = True @@ -113,7 +113,7 @@ def config_scheme(cpu_cls, cpu_list, options): if len(options.scheme)!=0: cpu.simulateScheme = options.scheme else: - print "not DerivO3CPU" + print("not DerivO3CPU") |