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
This commit is contained in:
parent
a278df0b95
commit
bbffd9419d
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class ResourceSked;
|
||||||
namespace ThePipeline {
|
namespace ThePipeline {
|
||||||
// Pipeline Constants
|
// Pipeline Constants
|
||||||
const unsigned NumStages = 5;
|
const unsigned NumStages = 5;
|
||||||
const ThreadID MaxThreads = 8;
|
const ThreadID MaxThreads = 1;
|
||||||
const unsigned BackEndStartStage = 2;
|
const unsigned BackEndStartStage = 2;
|
||||||
|
|
||||||
// List of Resources The Pipeline Uses
|
// List of Resources The Pipeline Uses
|
||||||
|
|
Loading…
Reference in a new issue