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-03-06 14:53:34 +0800
commit270ffe7ecc2d97a69cc5e39b6f4d590d7b8375bd (patch)
treece43590647be64451dab09a3265118ef70a18645 /configs/common/Benchmarks.py
parent9e15a6822d0409ef08c1659229c2efb6bcf4d2ae (diff)
downloadgem5-270ffe7ecc2d97a69cc5e39b6f4d590d7b8375bd.tar.xz
invisispec-1.0 configs
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 dec1e3e84..254fdc999 100644
--- a/configs/common/Benchmarks.py
+++ b/configs/common/Benchmarks.py
@@ -49,17 +49,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: