diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-02-18 14:29:44 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-02-18 14:29:44 -0500 |
commit | bbffd9419dca7e52423aa9def277b619c3523b72 (patch) | |
tree | 663d5d5cb9d22c57063da93492afad9a57bc97c6 /src/cpu | |
parent | a278df0b95daacb788b8442c7331f7a7f7c8aab6 (diff) | |
download | gem5-bbffd9419dca7e52423aa9def277b619c3523b72.tar.xz |
inorder: update default thread size(=1)
a lot of structures get allocated based off that MaxThreads parameter so this is an
effort to not abuse it
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/inorder/pipeline_traits.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/inorder/pipeline_traits.hh b/src/cpu/inorder/pipeline_traits.hh index 75f01adb1..573c0200a 100644 --- a/src/cpu/inorder/pipeline_traits.hh +++ b/src/cpu/inorder/pipeline_traits.hh @@ -51,7 +51,7 @@ class ResourceSked; namespace ThePipeline { // Pipeline Constants const unsigned NumStages = 5; - const ThreadID MaxThreads = 8; + const ThreadID MaxThreads = 1; const unsigned BackEndStartStage = 2; // List of Resources The Pipeline Uses |