diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-07-21 15:46:12 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-07-21 15:46:12 -0400 |
commit | bf90e1dbde78906b2d2831c123166ce19cf0ec53 (patch) | |
tree | eb8c710612dad8a28c805131084a6fe0253c2dd1 /src/cpu | |
parent | bd33d8d4ac43569f0c163b35aae13d2677faa875 (diff) | |
download | gem5-bf90e1dbde78906b2d2831c123166ce19cf0ec53.tar.xz |
Minor functionality updates.
SConstruct:
Include an option to specify the CPUs being tested.
src/cpu/SConscript:
Checker isn't SMT right now, so don't do SMT tests with the O3CPU if we're using the checker.
src/python/m5/objects/O3CPU.py:
Include default options. Unfortunately FullO3Config.py is still needed because it specifies which FUPool is being used.
tests/SConscript:
Several minor updates (sorry for one commit). Updated the copyright and fixed some m5 style issues. Also added the ability to specify which CPUs to run the tests on.
--HG--
extra : convert_revision : b0b801115705544ea02e572e31314f7bb8b5f0f2
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/SConscript b/src/cpu/SConscript index 7d45c7870..2bb9a2399 100644 --- a/src/cpu/SConscript +++ b/src/cpu/SConscript @@ -160,7 +160,8 @@ if 'O3CPU' in env['CPU_MODELS']: ''') if env['USE_CHECKER']: sources += Split('o3/checker_builder.cc') - env['SMT_CPU_MODELS'].append('O3CPU') + else: + env['SMT_CPU_MODELS'].append('O3CPU') # Checker doesn't support SMT right now if 'OzoneCPU' in env['CPU_MODELS']: need_bp_unit = True |