changeset a03f0e3b41c5 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=a03f0e3b41c5
description:
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:
src/cpu/inorder/pipeline_traits.hh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 6f67329c0091 -r a03f0e3b41c5 src/cpu/inorder/pipeline_traits.hh
--- a/src/cpu/inorder/pipeline_traits.hh Fri Feb 18 14:29:40 2011 -0500
+++ b/src/cpu/inorder/pipeline_traits.hh Fri Feb 18 14:29:44 2011 -0500
@@ -51,7 +51,7 @@
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
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev