diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2005-03-16 15:55:44 -0500 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2005-03-16 15:55:44 -0500 |
commit | 14c461c93c9b83fffb0d629d347a28d4f7b79198 (patch) | |
tree | f34561d4b5dd65402d23517390f3ac0ec3a4a2a4 | |
parent | 486c44611038b21569c9ab2202c6a0939131a331 (diff) | |
download | gem5-14c461c93c9b83fffb0d629d347a28d4f7b79198.tar.xz |
Fixed the super/parent change fpr splash2 benchmarks
configs/splash2/run.mpy:
Change super to parent
--HG--
extra : convert_revision : 61d45880b5e334200ebebc24d757c97cbeb048f6
-rw-r--r-- | configs/splash2/run.mpy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/splash2/run.mpy b/configs/splash2/run.mpy index a19dcdc93..800bff6f8 100644 --- a/configs/splash2/run.mpy +++ b/configs/splash2/run.mpy @@ -5,12 +5,12 @@ if 'SYSTEM' not in env: if env['SYSTEM'] == 'Simple': from SimpleConfig import * - BaseCPU.workload = Super.workload + BaseCPU.workload = parent.workload SimpleStandAlone.cpu = [ CPU() for i in xrange(int(env['NP'])) ] root = SimpleStandAlone elif env['SYSTEM'] == 'Detailed': from DetailedConfig import * - BaseCPU.workload = Super.workload + BaseCPU.workload = parent.workload DetailedStandAlone.cpu = [ DetailedCPU() for i in xrange(int(env['NP'])) ] root = DetailedStandAlone else: |