| version 1.1028 | version 1.1029 |
|---|
| |
| | |
| #include "Node.h" | #include "Node.h" |
| #include "Compute.h" | #include "Compute.h" |
| | #include "Priorities.h" |
| | |
| #define MIN_DEBUG_LEVEL 4 | #define MIN_DEBUG_LEVEL 4 |
| // #define DEBUGM | // #define DEBUGM |
| #include "Debug.h" | #include "Debug.h" |
| | |
| | |
| Compute::Compute(ComputeID c) : basePriority(63), cid(c), | Compute::Compute(ComputeID c) : basePriority(0), cid(c), |
| localWorkMsg(new (sizeof(int)*8) LocalWorkMsg) { | localWorkMsg(new (PRIORITY_SIZE) LocalWorkMsg) { |
| doAtomUpdate = false; | doAtomUpdate = false; |
| computeType = ComputeMap::Object()->type(c); | computeType = ComputeMap::Object()->type(c); |
| } | } |