summaryrefslogtreecommitdiff
path: root/configs/common/Benchmarks.py
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2019-02-28 17:07:41 +0800
committerIru Cai <mytbk920423@gmail.com>2019-05-31 15:59:08 +0800
commitdf8a5016d82e2c85e96f99eeff30d9a963cecffe (patch)
treed780d3710302c7835e295406df3ff2cd3b4c77e6 /configs/common/Benchmarks.py
parenta4c6e88d766858b675a7fd256df5a8b9a7e18ada (diff)
downloadgem5-df8a5016d82e2c85e96f99eeff30d9a963cecffe.tar.xz
invisispec-1.0 configs and exp script
import from original code: https://github.com/mjyan0720/InvisiSpec-1.0
Diffstat (limited to 'configs/common/Benchmarks.py')
-rw-r--r--configs/common/Benchmarks.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/common/Benchmarks.py b/configs/common/Benchmarks.py
index b7d10b563..b362e42e4 100644
--- a/configs/common/Benchmarks.py
+++ b/configs/common/Benchmarks.py
@@ -51,17 +51,17 @@ class SysConfig:
if self.memsize:
return self.memsize
else:
- return '128MB'
+ return '512MB'
def disk(self):
if self.diskname:
return disk(self.diskname)
elif buildEnv['TARGET_ISA'] == 'alpha':
- return env.get('LINUX_IMAGE', disk('linux-latest.img'))
+ return env.get('LINUX_IMAGE', disk('alpha-parsec.img'))
elif buildEnv['TARGET_ISA'] == 'x86':
return env.get('LINUX_IMAGE', disk('x86root.img'))
elif buildEnv['TARGET_ISA'] == 'arm':
- return env.get('LINUX_IMAGE', disk('linux-aarch32-ael.img'))
+ return env.get('LINUX_IMAGE', disk('aarch64-ubuntu-trusty-headless.img'))
elif buildEnv['TARGET_ISA'] == 'sparc':
return env.get('LINUX_IMAGE', disk('disk.s10hw2'))
else: