From 2c622f863c09793ab8410eb1138428d080fb8e63 Mon Sep 17 00:00:00 2001 From: Phil Miller Date: Mon, 13 Feb 2017 17:26:14 -0600 Subject: [PATCH] Bug #1278: Make CkReductionMgr node aware for SMP array and group reductions Instead of duplicating more logic between CkReductionMgr and CkNodeReductionMgr, we changed the spanning tree construction for CkReductionMgr so that CkReductionMsgs get aggregated at the node level, although for now this means all of the reduction work happens only on rank 0 of each node. This removes the need for CkReductionMgr to interleave with CkNodeReductionMgr and completely removes the need for CkArrayReductionMgr. The duplication removal is related to Cleanup #12. Change-Id: I4b98fa8348c20b63bf5149782262506c09316c30 --- src/ck-core/charm++.h | 2 - src/ck-core/ck.C | 13 - src/ck-core/ckarray.C | 15 +- src/ck-core/ckarray.ci | 3 +- src/ck-core/ckarray.h | 3 +- src/ck-core/ckarrayreductionmgr.C | 248 --- src/ck-core/ckarrayreductionmgr.ci | 9 - src/ck-core/ckarrayreductionmgr.h | 34 - src/ck-core/ckreduction.C | 472 +----- src/ck-core/ckreduction.ci | 10 +- src/ck-core/ckreduction.h | 36 +- src/libs/ck-libs/NDMeshStreamer/Make.depends | 3 +- src/libs/ck-libs/ckloop/Make.depends | 3 +- src/libs/ck-libs/completion/Make.depends | 3 +- src/libs/ck-libs/dummy/Make.depends | 3 +- src/libs/ck-libs/pose/Make.depends | 168 +- src/libs/ck-libs/tcharm/Make.depends | 6 +- src/scripts/Make.cidepends | 1 - src/scripts/Make.depends | 2343 +++++++++++++------------- src/scripts/Makefile | 10 +- 20 files changed, 1268 insertions(+), 2117 deletions(-) delete mode 100644 src/ck-core/ckarrayreductionmgr.C delete mode 100644 src/ck-core/ckarrayreductionmgr.ci delete mode 100644 src/ck-core/ckarrayreductionmgr.h diff --git a/src/ck-core/charm++.h b/src/ck-core/charm++.h index 6394dd75d9..c5c1b1a26e 100644 --- a/src/ck-core/charm++.h +++ b/src/ck-core/charm++.h @@ -749,7 +749,6 @@ PUPbytes(CkReductionClientBundle) class CProxy_NodeGroup; -class CProxy_CkArrayReductionMgr; class CProxy_Group : public CProxy { private: CkGroupID _ck_gid; @@ -1052,7 +1051,6 @@ if(CpvAccess(networkProgressCount) >= p) \ #include "sdag.h" #include "ckcheckpoint.h" #include "ckevacuation.h" -#include "ckarrayreductionmgr.h" #include "trace.h" #include "envelope.h" #include "pathHistory.h" diff --git a/src/ck-core/ck.C b/src/ck-core/ck.C index 5659de5801..0e6528722b 100644 --- a/src/ck-core/ck.C +++ b/src/ck-core/ck.C @@ -792,21 +792,8 @@ void _createGroup(CkGroupID groupID, envelope *env) _SET_USED(env, 1); int epIdx = env->getEpIdx(); int gIdx = _entryTable[epIdx]->chareIdx; - CkNodeGroupID rednMgr; -#if !GROUP_LEVEL_REDUCTION - if(_chareTable[gIdx]->isIrr == 0){ - CProxy_CkArrayReductionMgr rednMgrProxy = CProxy_CkArrayReductionMgr::ckNew(0, groupID); - rednMgr = rednMgrProxy; -// rednMgrProxy.setAttachedGroup(groupID); - } - else -#endif - { - rednMgr.setZero(); - } env->setGroupNum(groupID); env->setSrcPe(CkMyPe()); - env->setRednMgr(rednMgr); env->setGroupEpoch(CkpvAccess(_charmEpoch)); if(CkNumPes()>1) { diff --git a/src/ck-core/ckarray.C b/src/ck-core/ckarray.C index 01d0f1bb01..5851d217b7 100644 --- a/src/ck-core/ckarray.C +++ b/src/ck-core/ckarray.C @@ -805,14 +805,7 @@ static CkArrayID CkCreateArray(CkArrayMessage *m, int ctor, CkArrayOptions opts) { e_opts.setGroupDepID(mCastMgr); } -#if !GROUP_LEVEL_REDUCTION - CProxy_CkArrayReductionMgr nodereductionProxy = CProxy_CkArrayReductionMgr::ckNew(); - CkGroupID ag=CProxy_CkArray::ckNew(opts,marsh,nodereductionProxy, &e_opts); - nodereductionProxy.setAttachedGroup(ag); -#else - CkNodeGroupID dummyid; - CkGroupID ag=CProxy_CkArray::ckNew(opts,marsh,dummyid, &e_opts); -#endif + CkGroupID ag=CProxy_CkArray::ckNew(opts,marsh,&e_opts); return (CkArrayID)ag; } @@ -990,10 +983,8 @@ void _ckArrayInit(void) } CkArray::CkArray(CkArrayOptions &opts, - CkMarshalledMessage &initMsg, - CkNodeGroupID nodereductionID) - : CkReductionMgr(nodereductionID), - locMgr(CProxy_CkLocMgr::ckLocalBranch(opts.getLocationManager())), + CkMarshalledMessage &initMsg) + : locMgr(CProxy_CkLocMgr::ckLocalBranch(opts.getLocationManager())), locMgrID(opts.getLocationManager()), sectionAutoDelegate(opts.isSectionAutoDelegated()), mCastMgrID(opts.getMcastManager()), diff --git a/src/ck-core/ckarray.ci b/src/ck-core/ckarray.ci index 48daefb6cf..29290c5fdc 100644 --- a/src/ck-core/ckarray.ci +++ b/src/ck-core/ckarray.ci @@ -1,12 +1,11 @@ module CkArray { extern module CkReduction; extern module CkLocation; - extern module CkArrayReductionMgr; readonly bool _isAnytimeMigration; group [migratable] CkArray : CkReductionMgr { - entry CkArray(CkArrayOptions opts, CkMarshalledMessage ctorMsg, CkNodeGroupID nodereductionProxy); + entry CkArray(CkArrayOptions opts, CkMarshalledMessage ctorMsg); //Insertion entry [inline] void insertElement(CkMarshalledMessage, CkArrayIndex, int listenerData[CK_ARRAYLISTENER_MAXLEN]); entry [inline] void demandCreateElement(const CkArrayIndex &idx, int ctor, CkDeliver_t type); diff --git a/src/ck-core/ckarray.h b/src/ck-core/ckarray.h index 3d47405281..477479ccd3 100644 --- a/src/ck-core/ckarray.h +++ b/src/ck-core/ckarray.h @@ -617,7 +617,6 @@ typedef ArrayElementT ArrayElementMax; /*@{*/ #include "CkArray.decl.h" -#include "CkArrayReductionMgr.decl.h" void CkSendAsyncCreateArray(int ctor, CkCallback cb, CkArrayOptions opts, void *ctorMsg); @@ -654,7 +653,7 @@ private: public: //Array Creation: - CkArray(CkArrayOptions &c,CkMarshalledMessage &initMsg,CkNodeGroupID nodereductionProxy); + CkArray(CkArrayOptions &c,CkMarshalledMessage &initMsg); CkArray(CkMigrateMessage *m); ~CkArray(); CkGroupID &getGroupID(void) {return thisgroup;} diff --git a/src/ck-core/ckarrayreductionmgr.C b/src/ck-core/ckarrayreductionmgr.C deleted file mode 100644 index 81da4350d4..0000000000 --- a/src/ck-core/ckarrayreductionmgr.C +++ /dev/null @@ -1,248 +0,0 @@ -#include "charm++.h" -#include "ck.h" -#include "CkArrayReductionMgr.decl.h" -#define ARRREDDEBUG 0 - -void noopitar(const char*, ...) -{} - -#if ARRREDDEBUG -#define ARPRINT CkPrintf -#else -#define ARPRINT noopitar -#endif - -void CkArrayReductionMgr::init() -{ - //ARPRINT("Array ReductionMgr Constructor called %d\n",thisgroup); - redNo=0; - size = CkMyNodeSize(); - count = 0; - lockCount = CmiCreateLock(); - alreadyStarted = -1; -} - -CkArrayReductionMgr::CkArrayReductionMgr(){ - init(); - attachedGroup.setZero(); -} - -CkArrayReductionMgr::CkArrayReductionMgr(int dummy, CkGroupID gid){ - init(); - attachedGroup = gid; -} - -void CkArrayReductionMgr::flushStates(){ - if(CkMyRank()== 0){ - // CmiPrintf("[%d] CkArrayReductionMgr::flushState\n", CkMyPe()); - redNo=0; - count = 0; - while (!my_msgs.isEmpty()) delete my_msgs.deq(); - while (!my_futureMsgs.isEmpty()) delete my_futureMsgs.deq(); - reductionInfo.redNo = 0; - CkNodeReductionMgr::flushStates(); - } -} - -void CkArrayReductionMgr::collectAllMessages(){ - // if the queue isn't full, but there is at least one message and the - // reduction is streamable, do a partial reduction - bool partialReduction = count < size && my_msgs.length() > 0 && \ - CkReduction::reducerTable()[my_msgs.peek()->reducer].streamable; - - if(count == size || partialReduction) { - ARPRINT("[%d] CollectAll messages for %d with %d on %p\n",CkMyNode(),redNo,count,this); - CkReductionMsg *result = reduceMessages(); - if (partialReduction) { - my_msgs.enq(result); - return; - } - result->redNo = redNo; - /**keep a count of elements that contributed to the original reduction***/ - contributeWithCounter(result,result->gcount); - count=0; - redNo++; - int n=my_futureMsgs.length(); - for(int i=0;igetRedNo() == redNo){ - my_msgs.enq(elementMesg); - count++; - collectAllMessages(); - }else{ - my_futureMsgs.enq(elementMesg); - } - } - } -} - -void CkArrayReductionMgr::contributeArrayReduction(CkReductionMsg *m){ - ARPRINT("[%d]Contribute Array Reduction called for RedNo %d group %d \n",CkMyNode(),m->getRedNo(),thisgroup.idx); - /** store the contribution untill all procs have contributed. At that point reduce and - carry out a reduction among nodegroups*/ -#if CMK_BIGSIM_CHARM - _TRACE_BG_TLINE_END(&(m->log)); -#endif - CmiLock(lockCount); - if(m->getRedNo() == redNo){ - my_msgs.enq(m); - count++; - collectAllMessages(); - }else{ - //ARPRINT("[%d][%d]Out of sequence messages for %d Present redNo %d \n",CkMyNode(),CkMyPe(),m->getRedNo(),redNo); - my_futureMsgs.enq(m); - } - CmiUnlock(lockCount); -} - -CkReductionMsg *CkArrayReductionMgr::reduceMessages(void){ -#if CMK_BIGSIM_CHARM - _TRACE_BG_END_EXECUTE(1); - void* _bgParentLog = NULL; - _TRACE_BG_BEGIN_EXECUTE_NOMSG("ArrayReduce", &_bgParentLog, 0); -#endif - CkReductionMsg *ret=NULL; - - //Look through the vector for a valid reducer, swapping out placeholder messages - CkReduction::reducerType r=CkReduction::invalid; - int msgs_gcount=0;//Reduced gcount - int msgs_nSources=0;//Reduced nSources - int msgs_userFlag=-1; - CkCallback msgs_callback; - CkCallback msgs_secondaryCallback; - int i; - int nMsgs=0; - CkReductionMsg *m; - CkReductionMsg **msgArr=new CkReductionMsg*[my_msgs.length()]; - bool isMigratableContributor; - - while(NULL!=(m=my_msgs.deq())) - { - - msgs_gcount+=m->gcount; - if (m->sourceFlag!=0) - { //This is a real message from an element, not just a placeholder - msgArr[nMsgs++]=m; - msgs_nSources+=m->nSources(); - r=m->reducer; - if (!m->callback.isInvalid()) - msgs_callback=m->callback; - if(!m->secondaryCallback.isInvalid()) - msgs_secondaryCallback = m->secondaryCallback; - if (m->userFlag!=-1) - msgs_userFlag=m->userFlag; - - isMigratableContributor=m->isMigratableContributor(); -#if CMK_BIGSIM_CHARM - _TRACE_BG_ADD_BACKWARD_DEP(m->log); -#endif - - } - else - { //This is just a placeholder message-- replace it - delete m; - } - } - - if (nMsgs==0||r==CkReduction::invalid) - //No valid reducer in the whole vector - ret=CkReductionMsg::buildNew(0,NULL); - else - {//Use the reducer to reduce the messages - if(nMsgs == 1){ - ret = msgArr[0]; - }else{ - CkReduction::reducerFn f=CkReduction::reducerTable()[r].fn; - ret=(*f)(nMsgs,msgArr); - } - ret->reducer=r; - } - - //Go back through the vector, deleting old messages - for (i=0;iredNo=redNo; - ret->gcount=msgs_gcount; - ret->userFlag=msgs_userFlag; - ret->callback=msgs_callback; - ret->secondaryCallback = msgs_secondaryCallback; - ret->sourceFlag=msgs_nSources; - ret->setMigratableContributor(isMigratableContributor); - return ret; -} - -void CkArrayReductionMgr::pup(PUP::er &p){ - NodeGroup::pup(p); - p(redNo);p(count); - p|my_msgs; - p|my_futureMsgs; - p|attachedGroup; - if(p.isUnpacking()) { - size = CkMyNodeSize(); - lockCount = CmiCreateLock(); - } -} - -void CkArrayReductionMgr::setAttachedGroup(CkGroupID groupID){ - attachedGroup = groupID; - ARPRINT("[%d] setAttachedGroup called with attachedGroup %d \n",CkMyNode(),attachedGroup); - if (alreadyStarted != -1) { - ((CkNodeReductionMgr *)this)->restartLocalGroupReductions(alreadyStarted); - alreadyStarted = -1; - } -} - - -void CkArrayReductionMgr::startNodeGroupReduction(int number,CkGroupID groupID){ -#if (defined(_FAULT_MLOG_) || defined(_FAULT_CAUSAL_)) - Chare *oldObj =CpvAccess(_currentObj); - CpvAccess(_currentObj) = this; -#endif - ARPRINT("[%d] startNodeGroupReductions for red No %d my group %d attached group %d on %p \n",CkMyNode(),number,thisgroup.idx, attachedGroup.idx,this); - if(attachedGroup.isZero()){ - setAttachedGroup(groupID); - } - startLocalGroupReductions(number); - CkReductionNumberMsg *msg = new CkReductionNumberMsg(number); - envelope::setSrcPe((char *)UsrToEnv(msg),CkMyNode()); - ((CkNodeReductionMgr *)this)->ReductionStarting(msg); -#if (defined(_FAULT_MLOG_) || defined(_FAULT_CAUSAL_)) - CpvAccess(_currentObj) = oldObj; -#endif -} - -int CkArrayReductionMgr::startLocalGroupReductions(int number){ - ARPRINT("[%d] startLocalGroupReductions for red No %d my group %d attached group %d number of rednMgrs %d on %p \n",CkMyNode(),number,thisgroup.idx, attachedGroup.idx,size,this); - if(attachedGroup.isZero()){ - alreadyStarted = number; - return 0; - } - int firstPE = CkNodeFirst(CkMyNode()); - for(int i=0;igetGCount(); - } - return totalGCount; -} - -CkArrayReductionMgr::~CkArrayReductionMgr() { - CmiDestroyLock(lockCount); -} - -#include "CkArrayReductionMgr.def.h" diff --git a/src/ck-core/ckarrayreductionmgr.ci b/src/ck-core/ckarrayreductionmgr.ci deleted file mode 100644 index 8c8a470f70..0000000000 --- a/src/ck-core/ckarrayreductionmgr.ci +++ /dev/null @@ -1,9 +0,0 @@ -module CkArrayReductionMgr { - extern module CkReduction; - nodegroup [migratable] CkArrayReductionMgr { - entry CkArrayReductionMgr(); - entry CkArrayReductionMgr(int dummy, CkGroupID gid); - entry void setAttachedGroup(CkGroupID groupID); - //entry [immediate] void contributeArrayReduction(CkReductionMsg *); - }; -}; diff --git a/src/ck-core/ckarrayreductionmgr.h b/src/ck-core/ckarrayreductionmgr.h deleted file mode 100644 index 33da243842..0000000000 --- a/src/ck-core/ckarrayreductionmgr.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef _CKARRAYREDNMGR_H -#define _CKARRAYREDNMGR_H -class CkArrayReductionMgr : public NodeGroup{ - /** This class receives contributions from all the CkReductionMgr s in a node, after each of them has - collected all the contributions on one processor. The data from the different processors in a node - is collected and sent to the CkNodeReductionMgr for this node - */ - private: - int size; - int redNo; - int count; - CkGroupID attachedGroup; - CkMsgQ my_msgs; - CkMsgQ my_futureMsgs; - CmiNodeLock lockCount; - int alreadyStarted; - void init(); - void collectAllMessages(); - public: - CkArrayReductionMgr(); - CkArrayReductionMgr(int dummy, CkGroupID gid); - CkArrayReductionMgr(CkMigrateMessage *m):NodeGroup(m) {} - void contributeArrayReduction(CkReductionMsg *m); - CkReductionMsg *reduceMessages(void); - void flushStates(); - virtual void pup(PUP::er &p); - void setAttachedGroup(CkGroupID groupID); - void startNodeGroupReduction(int number,CkGroupID groupID); - virtual int startLocalGroupReductions(int number); - virtual int getTotalGCount(); - ~CkArrayReductionMgr(); -}; -#endif - diff --git a/src/ck-core/ckreduction.C b/src/ck-core/ckreduction.C index 84c3a57d87..366d8a2eed 100644 --- a/src/ck-core/ckreduction.C +++ b/src/ck-core/ckreduction.C @@ -86,7 +86,6 @@ waits for the migrant contributions to straggle in. extern bool _inrestart; Group::Group() - : CkReductionMgr(CkpvAccess(_currentGroupRednMgr)) { if (_inrestart) CmiAbort("A Group object did not call the migratable constructor of its base class!"); @@ -94,9 +93,6 @@ Group::Group() contributorStamped(&reductionInfo); contributorCreated(&reductionInfo); doneCreatingContributors(); -#if !GROUP_LEVEL_REDUCTION - DEBR(("[%d,%d]Creating nodeProxy with gid %d\n",CkMyNode(),CkMyPe(),CkpvAccess(_currentGroupRednMgr))); -#endif } Group::Group(CkMigrateMessage *msg):CkReductionMgr(msg) @@ -177,11 +173,8 @@ the reduced message up the reduction tree to node zero, where they're passed to the user's client function. */ -CkReductionMgr::CkReductionMgr(CProxy_CkArrayReductionMgr groupRednMgr) +CkReductionMgr::CkReductionMgr() : -#if !GROUP_LEVEL_REDUCTION - nodeProxy(groupRednMgr), -#endif thisProxy(thisgroup), isDestroying(false) { @@ -240,11 +233,6 @@ CkReductionMgr::CkReductionMgr(CkMigrateMessage *m) :CkGroupInitCallback(m) CkReductionMgr::~CkReductionMgr() { -#if !GROUP_LEVEL_REDUCTION - if (CkMyRank() == 0) { - delete nodeProxy.ckLocalBranch(); - } -#endif } void CkReductionMgr::flushStates() @@ -265,9 +253,6 @@ void CkReductionMgr::flushStates() adjVec.length()=0; -#if ! GROUP_LEVEL_REDUCTION - nodeProxy[CkMyNode()].ckLocalBranch()->flushStates(); -#endif } //////////// Reduction Manager Client API ///////////// @@ -280,10 +265,6 @@ void CkReductionMgr::ckSetReductionClient(CkCallback *cb) if (CkMyPe()!=0) CkError("WARNING: ckSetReductionClient should only be called from processor zero!\n"); storedCallback=*cb; -#if ! GROUP_LEVEL_REDUCTION - CkCallback *callback =new CkCallback(CkIndex_CkReductionMgr::ArrayReductionHandler(0),thishandle); - nodeProxy.ckSetReductionClient(callback); -#endif } ///////////////////////////// Contributor //////////////////////// @@ -562,7 +543,7 @@ void CkReductionMgr::sendReductionStartingToKids(int red_no) { #if (defined(_FAULT_MLOG_) || defined(_FAULT_CAUSAL_)) || CMK_MEM_CHECKPOINT for (int k=0;klog)); #endif addContribution(m); -#else - m->secondaryCallback = m->callback; - m->callback = CkCallback(CkIndex_CkReductionMgr::ArrayReductionHandler(NULL),0,thisProxy); - CkArrayReductionMgr *nodeMgr=nodeProxy[CkMyNode()].ckLocalBranch(); - nodeMgr->LateMigrantMsg(m); -/* int len = finalMsgs.length(); - finalMsgs.enq(m); -// CkPrintf("[%d]Late Migrant Detected for %d , (%d %d )\n",CkMyPe(),m->redNo,len,finalMsgs.length()); - endArrayReduction();*/ -#endif } //A late migrating contributor will never contribute to this reduction @@ -668,66 +638,13 @@ void CkReductionMgr::startReduction(int number,int srcPE) return; } + // TODO: This is currently gotten from the command-line...but it could + // probably just be determined at runtime. I don't know if the CL option is + // even documented anywhere. if(disableNotifyChildrenStart) return; //Sent start requests to our kids (in case they don't already know) -#if GROUP_LEVEL_REDUCTION sendReductionStartingToKids(redNo); - //for (int k=0;kstartNodeGroupReduction(number,thisgroup); -#endif - - /* - int temp; - //making it a broadcast done only by PE 0 - if(!hasParent()){ - temp = completedRedNo+1; - for(int i=temp;i<=number;i++){ - for(int j=0;j 1 && CkReduction::reducerTable()[msgs.peek()->reducer].streamable) { partialReduction = true; @@ -806,7 +722,6 @@ void CkReductionMgr::finishReduction(void) } } -#endif DEBR((AA "Reducing data... %d %d\n" AB,nContrib,(lcount+adj(redNo).lcount))); CkReductionMsg *result=reduceMessages(); @@ -817,7 +732,6 @@ void CkReductionMgr::finishReduction(void) return; } -#if GROUP_LEVEL_REDUCTION if (hasParent()) {//Pass data up tree to parent DEBR((AA "Passing reduced data up to parent node %d.\n" AB,treeParent())); @@ -855,21 +769,6 @@ void CkReductionMgr::finishReduction(void) "You must register a client with either SetReductionClient or during contribute.\n"); } -#else - result->gcount+=gcount+adj(redNo).gcount; - - result->secondaryCallback = result->callback; - result->callback = CkCallback(CkIndex_CkReductionMgr::ArrayReductionHandler(NULL),0,thisProxy); - DEBR((AA "Reduced mesg gcount %d localgcount %d\n" AB,result->gcount,gcount)); - - //CkPrintf("[%d] Got all local Messages in finishReduction %d in redNo %d\n",CkMyPe(),nContrib,redNo); - - // DEBR(("[%d,%d]Callback for redNo %d in group %d mesggcount=%d localgcount=%d\n",CkMyNode(),CkMyPe(),redNo,thisgroup.idx,ret->gcount,gcount)); - - // Find our node reduction manager, and pass reduction to him: - CkArrayReductionMgr *nodeMgr=nodeProxy[CkMyNode()].ckLocalBranch(); - nodeMgr->contributeArrayReduction(result); -#endif //House Keeping Operations will have to check later what needs to be changed redNo++; @@ -878,17 +777,11 @@ void CkReductionMgr::finishReduction(void) checkIsActive(); //Shift the count adjustment vector down one slot (to match new redNo) int i; -#if !GROUP_LEVEL_REDUCTION - /* nodegroup reduction will adjust adjVec in endArrayReduction on PE 0 */ - if(CkMyPe()!=0) -#endif - { - completedRedNo++; - for (i=1;i<(int)(adjVec.length());i++){ - adjVec[i-1]=adjVec[i]; - } - adjVec.length()--; + completedRedNo++; + for (i=1;i<(int)(adjVec.length());i++){ + adjVec[i-1]=adjVec[i]; } + adjVec.length()--; inProgress=false; startRequested=false; @@ -902,7 +795,6 @@ void CkReductionMgr::finishReduction(void) if (m!=NULL) //One of these addContributions may have finished us. addContribution(m);//<- if *still* early, puts it back in the queue } -#if GROUP_LEVEL_REDUCTION n=futureRemoteMsgs.length(); for (i=0;i= redNo){ startReduction(redNo,CkMyPe()); @@ -924,7 +815,6 @@ void CkReductionMgr::finishReduction(void) //Sent up the reduction tree with reduced data void CkReductionMgr::RecvMsg(CkReductionMsg *m) { -#if GROUP_LEVEL_REDUCTION #if CMK_BIGSIM_CHARM _TRACE_BG_TLINE_END(&m->log); #endif @@ -945,7 +835,6 @@ void CkReductionMgr::finishReduction(void) futureRemoteMsgs.enq(m); } else CkAbort("Recv'd late remote contribution!\n"); -#endif } void CkReductionMgr::AddToInactiveList(CkReductionInactiveMsg *m) { @@ -1129,9 +1018,6 @@ void CkReductionMgr::pup(PUP::er &p) p|futureRemoteMsgs; p|finalMsgs; p|adjVec; -#if !GROUP_LEVEL_REDUCTION - p|nodeProxy; -#endif p|storedCallback; // handle CkReductionClientBundle if (storedCallback.type == CkCallback::callCFn && storedCallback.d.cfn.fn == CkReductionClientBundle::callbackCfn) @@ -1171,221 +1057,67 @@ void CkReductionMgr::pup(PUP::er &p) DEBR(("[%d,%d] pupping _____________ gcount = %d \n",CkMyNode(),CkMyPe(),gcount)); } - -//Callback for doing Reduction through NodeGroups added by Sayantan - -void CkReductionMgr::ArrayReductionHandler(CkReductionMsg *m){ - finalMsgs.enq(m); - //CkPrintf("ArrayReduction Handler Invoked for %d \n",m->redNo); - adj(m->redNo).mainRecvd = true; - DEBR(("~~~~~~~~~~~~~ ArrayReductionHandler Callback called for redNo %d with mesgredNo %d at %.6f %d\n",completedRedNo,m->redNo,CmiWallTimer())); - endArrayReduction(); -} - -void CkReductionMgr :: endArrayReduction(){ - CkReductionMsg *ret=NULL; - int nMsgs=finalMsgs.length(); - //CkPrintf("endArrayReduction Invoked for %d \n",completedRedNo+1); - //Look through the vector for a valid reducer, swapping out placeholder messages - //CkPrintf("Length of Final Message %d \n",nMsgs); - CkReduction::reducerType r=CkReduction::invalid; - int msgs_gcount=0;//Reduced gcount - int msgs_nSources=0;//Reduced nSources - CMK_REFNUM_TYPE msgs_userFlag=(CMK_REFNUM_TYPE)-1; - CkCallback msgs_callback; - CkCallback msgs_secondaryCallback; - CkVec tempMsgs; - int i; - int numMsgs = 0; - for (i=0;iredNo == completedRedNo +1){ - msgs_gcount+=m->gcount; - if (m->sourceFlag!=0) - { //This is a real message from an element, not just a placeholder - msgs_nSources+=m->nSources(); - - // for "nop" reducer type, only need to accept one message - if (tempMsgs.length() == 0 || m->reducer != CkReduction::nop) { - r=m->reducer; - if (!m->callback.isInvalid()) - msgs_callback=m->callback; - if(!m->secondaryCallback.isInvalid()) - msgs_secondaryCallback = m->secondaryCallback; - if (m->userFlag!=(CMK_REFNUM_TYPE)-1) - msgs_userFlag=m->userFlag; - tempMsgs.push_back(m); - } - else { - delete m; - } - } - else { - delete m; - } - }else{ - finalMsgs.enq(m); - } - } - numMsgs = tempMsgs.length(); - - DEBR(("[%d]Total = %d %d Sources = %d Number of Messages %d Adj(Completed redno).mainRecvd %d\n",CkMyPe(),msgs_gcount, adj(completedRedNo+1).gcount,msgs_nSources,numMsgs,adj(completedRedNo+1).mainRecvd)); - - if(numMsgs == 0){ - return; - } - if(adj(completedRedNo+1).mainRecvd == false){ - for(i=0;i msgs_nSources){ - for(i=0;i 1 && msgArr[0]->reducer == CkReduction::nop) { - // nMsgs > 1 indicates that reduction type is not "nop" - // this means any data with reducer type nop was submitted - // only so that counts would agree, and can be removed - delete msgArr[0]; - msgArr[0] = msgArr[numMsgs - 1]; - numMsgs--; - } - - ret=(*f)(numMsgs,msgArr); - ret->reducer=r; - - } - - -#if USE_CRITICAL_PATH_HEADER_ARRAY - -#if CRITICAL_PATH_DEBUG > 3 - CkPrintf("[%d] combining critical path information from messages in CkReductionMgr::endArrayReduction(). numMsgs=%d\n", CkMyPe(), numMsgs); -#endif - - MergeablePathHistory path(CkpvAccess(currentlyExecutingPath)); - path.updateMax(UsrToEnv(ret)); - // Combine the critical paths from all the reduction messages into the header for the new result - for (i=0;ipathHistory.getTime() ); - path.updateMax(UsrToEnv(tempMsgs[i])); - } else { - // CkPrintf("[%d] other path is ret = %lf\n", CkMyPe(), UsrToEnv(tempMsgs[i])->pathHistory.getTime() ); - } - } - // Also consider the path which got us into this entry method - -#if CRITICAL_PATH_DEBUG > 3 - CkPrintf("[%d] result path = %lf\n", CkMyPe(), path.getTime() ); -#endif - -#endif - - - - - - for(i = 0;igetLength(),finalMsgs.length()); - - ret->redNo=completedRedNo+1; - ret->gcount=msgs_gcount; - ret->userFlag=msgs_userFlag; - ret->callback=msgs_callback; - ret->secondaryCallback = msgs_secondaryCallback; - ret->sourceFlag=msgs_nSources; - - DEBR(("~~~~~~~~~~~~~~~~~ About to call callback from end of GROUP REDUCTION %d at %.6f\n",completedRedNo,CmiWallTimer())); - - CkSetRefNum(ret, ret->getUserFlag()); - if (!ret->secondaryCallback.isInvalid()) - ret->secondaryCallback.send(ret); - else if (!storedCallback.isInvalid()) - storedCallback.send(ret); - else{ - DEBR(("No reduction client for group %d \n",thisgroup.idx)); - CkAbort("No reduction client!\n" - "You must register a client with either SetReductionClient or during contribute.\n"); - } - completedRedNo++; - - DEBR(("[%d,%d]------------END OF GROUP REDUCTION %d for group %d at %.6f\n",CkMyNode(),CkMyPe(),completedRedNo,thisgroup.idx,CkWallTimer())); - - for (i=1;i<(int)(adjVec.length());i++) - adjVec[i-1]=adjVec[i]; - adjVec.length()--; - endArrayReduction(); -} - void CkReductionMgr::init_BinaryTree(){ - parent = (CkMyPe()-1)/TREE_WID; - int firstkid = CkMyPe()*TREE_WID+1; - numKids=CkNumPes()-firstkid; - if (numKids>TREE_WID) numKids=TREE_WID; - if (numKids<0) numKids=0; + if (CkNodeSize(CkMyNode()) > 1 && CkNodeFirst(CkMyNode()) != CkMyPe()) { + parent = CkNodeFirst(CkMyNode()); + numKids = 0; + } else { + int parentNode = (CkMyNode()-1)/TREE_WID; + parent = CkMyNode() > 0 ? CkNodeFirst(parentNode) : -1; + // Add nodes that are my children + int firstKid = CkMyNode()*TREE_WID+1; + numKids=CkNumNodes()-firstKid; + if (numKids > TREE_WID) numKids = TREE_WID; + if (numKids < 0) numKids = 0; + for (int i = 0; i < numKids; i++) { + kids.push_back(CkNodeFirst(firstKid+i)); + newKids.push_back(CkNodeFirst(firstKid+i)); + } - for(int i=0;i 0){ - if(p % 2 == 0) - break; - else{ - p = p/2; - count++; - } - } - /*parent = label + rint(pow((double)2,count));*/ - parent = label + (1< 1 && CkNodeFirst(CkMyNode()) != CkMyPe()) { + parent = CkNodeFirst(CkMyNode()); + numKids = 0; + } else { + int depth = (int)ceil((log((double)CkNumNodes())/log((double)2))); + upperSize = (unsigned) 1 << depth; + label = upperSize-CkNodeFirst(CkMyNode())-1; + int p=label; + int count=0; + while( p > 0){ + if(p % 2 == 0) + break; + else{ + p = p/2; + count++; + } + } + parent = label + (1<num)); - CmiLock(lockEverything); - /* - FAULT_EVAC - */ - if(blocked){ - delete m; - CmiUnlock(lockEverything); - return ; - } - int srcNode = CmiNodeOf((UsrToEnv(m))->getSrcPe()); - if (isPresent(m->num) && !inProgress) - { - DEBR((AA "Starting Node reduction #%d at parent's request\n" AB,m->num)); - startReduction(m->num,srcNode); - finishReduction(); - } else if (isFuture(m->num)){ - DEBR(("[%d][%d] Message num %d Present redNo %d \n",CkMyNode(),CkMyPe(),m->num,redNo)); - } - else //is Past - DEBR((AA "Ignoring node parent's late request to start #%d\n" AB,m->num)); - CmiUnlock(lockEverything); - delete m; - -} - - void CkNodeReductionMgr::doRecvMsg(CkReductionMsg *m){ DEBR(("[%d,%d] doRecvMsg called for %d at %.6f[[[[[\n",CkMyNode(),CkMyPe(),m->redNo,CkWallTimer())); /* @@ -2445,40 +2142,6 @@ void CkNodeReductionMgr::startReduction(int number,int srcNode) //If none of these cases, we need to start the reduction-- DEBR((AA "Starting Node reduction #%d on %p srcNode %d\n" AB,redNo,this,srcNode)); inProgress=true; - - if(!_isNotifyChildInRed) return; - - //Sent start requests to our kids (in case they don't already know) - - for (int k=0;kcallback; } - if(!m->secondaryCallback.isInvalid()){ - msgs_secondaryCallback = m->secondaryCallback; - } if (m->userFlag!=(CMK_REFNUM_TYPE)-1) msgs_userFlag=m->userFlag; isMigratableContributor= m->isMigratableContributor(); @@ -2889,7 +2548,6 @@ CkReductionMsg *CkNodeReductionMgr::reduceMessages(void) ret->gcount=msgs_gcount; ret->userFlag=msgs_userFlag; ret->callback=msgs_callback; - ret->secondaryCallback = msgs_secondaryCallback; ret->sourceFlag=msgs_nSources; ret->setMigratableContributor(isMigratableContributor); DEBR((AA "Node Reduced gcount=%d; sourceFlag=%d\n" AB,ret->gcount,ret->sourceFlag)); diff --git a/src/ck-core/ckreduction.ci b/src/ck-core/ckreduction.ci index 1a594d06f9..fc779e13e9 100644 --- a/src/ck-core/ckreduction.ci +++ b/src/ck-core/ckreduction.ci @@ -16,7 +16,7 @@ module CkReduction { message CkReductionInactiveMsg; group [migratable] CkReductionMgr : CkGroupInitCallback { - entry CkReductionMgr(CProxy_CkArrayReductionMgr); + entry CkReductionMgr(); entry [expedited] void RecvMsg(CkReductionMsg *); //Sent down the reduction tree (used by barren PEs) @@ -28,8 +28,6 @@ module CkReduction { entry [expedited] void Barrier_RecvMsg(CkReductionMsg *); - //call back for using NodeGroup Reductions added by sayantan - entry void ArrayReductionHandler(CkReductionMsg *m); entry void contributeViaMessage(CkReductionMsg *m); entry void AddToInactiveList(CkReductionInactiveMsg *m); }; @@ -37,15 +35,9 @@ module CkReduction { nodegroup CkNodeReductionMgr : IrrGroup { entry CkNodeReductionMgr(void); - //Sent down the reduction tree (used by barren PEs) - entry void ReductionStarting(CkReductionNumberMsg *); - //Sent up the reduction tree with reduced data entry [expedited] void RecvMsg(CkReductionMsg *); - // restart local groups if they are not attached - entry void restartLocalGroupReductions(int number); - entry void DeleteChild(int child); entry void DeleteNewChild(int child); entry void modifyTree(int code,int size,int data[size]); diff --git a/src/ck-core/ckreduction.h b/src/ck-core/ckreduction.h index 5a14088625..c5a8a8c4fc 100644 --- a/src/ck-core/ckreduction.h +++ b/src/ck-core/ckreduction.h @@ -19,11 +19,6 @@ The calls needed to use the reduction manager are: #define _CKREDUCTION_H #include "CkReduction.decl.h" -#include "CkArrayReductionMgr.decl.h" - -#if CMK_BIGSIM_CHARM || CMK_MULTICORE || !CMK_SMP -#define GROUP_LEVEL_REDUCTION 1 -#endif #ifdef _PIPELINED_ALLREDUCE_ #define FRAG_SIZE 131072 @@ -97,11 +92,10 @@ public: class countAdjustment { public: - int gcount;//Adjustment to global count (applied at reduction end) - int lcount;//Adjustment to local count (applied continually) - bool mainRecvd; - countAdjustment(int ignored=0) {(void)ignored; gcount=0; lcount=0; mainRecvd=false;} - void pup(PUP::er& p){ p|gcount; p|lcount; p|mainRecvd; } + int gcount;//Adjustment to global count (applied at reduction end) + int lcount;//Adjustment to local count (applied continually) + countAdjustment(int ignored=0) {(void)ignored; gcount=0; lcount=0;} + void pup(PUP::er& p){ p|gcount; p|lcount; } }; /** @todo: Fwd decl for a temporary class. Remove after @@ -247,7 +241,6 @@ public: private: friend class CkReductionMgr; friend class CkNodeReductionMgr; - friend class CkArrayReductionMgr; friend class CkMulticastMgr; friend class ck::impl::XArraySectionReducer; //System-level interface @@ -272,7 +265,6 @@ class CkReductionMsg : public CMessage_CkReductionMsg friend class CkReduction; friend class CkReductionMgr; friend class CkNodeReductionMgr; - friend class CkArrayReductionMgr; friend class CkMulticastMgr; #ifdef _PIPELINED_ALLREDUCE_ friend class ArrayElement; @@ -332,7 +324,6 @@ private: void *data;//Reduction data CMK_REFNUM_TYPE userFlag; //Some sort of identifying flag, for client use CkCallback callback; //What to do when done - CkCallback secondaryCallback; // the group callback is piggybacked on the nodegrp reduction bool migratableContributor; // are the contributors migratable int sourceFlag;/*Flag: @@ -408,18 +399,12 @@ public: void contribute(contributorInfo *ci,CkReductionMsg *msg); void contributeWithCounter(contributorInfo *ci,CkReductionMsg *m,int count); //Communication (library-private) - void restartLocalGroupReductions(int number); - //Sent down the reduction tree (used by barren PEs) - void ReductionStarting(CkReductionNumberMsg *m); //Sent up the reduction tree with reduced data void RecvMsg(CkReductionMsg *m); void doRecvMsg(CkReductionMsg *m); void LateMigrantMsg(CkReductionMsg *m); virtual void flushStates(); // flush state varaibles - virtual int startLocalGroupReductions(int number){ (void)number; return 1;} // can be used to start reductions on all the - //CkReductionMgrs on a particular node. It is overwritten by CkArrayReductionMgr to make the actual calls - // since it knows the CkReductionMgrs on a node. virtual int getTotalGCount(){return 0;}; @@ -548,13 +533,12 @@ class NodeGroup : public CkNodeReductionMgr { }; -class CProxy_CkArrayReductionMgr; class CkReductionMgr : public CkGroupInitCallback { public: CProxy_CkReductionMgr thisProxy; public: - CkReductionMgr(CProxy_CkArrayReductionMgr groupRednMgr); + CkReductionMgr(); CkReductionMgr(CkMigrateMessage *m); ~CkReductionMgr(); @@ -600,10 +584,6 @@ public: void RecvMsg(CkReductionMsg *m); void AddToInactiveList(CkReductionInactiveMsg *m); - //Call back for using Node added by Sayantan - void ArrayReductionHandler(CkReductionMsg *m); - void endArrayReduction(); - // simple barrier for FT void barrier(CkReductionMsg * msg); void Barrier_RecvMsg(CkReductionMsg *m); @@ -645,15 +625,9 @@ private: int numEmigrantRecObjs; #endif -#if !GROUP_LEVEL_REDUCTION - CProxy_CkArrayReductionMgr nodeProxy; //holds the local branch of the nodegroup tree -#endif - //Data members //Stored callback function (may be NULL if none has been set) CkCallback storedCallback; - // calback that came along with the contribute - CkCallback *secondaryStoredCallback; int redNo;//Number of current reduction (incremented at end) to be deposited with NodeGroups int completedRedNo;//Number of reduction Completed ie recieved callback from NodeGroups diff --git a/src/libs/ck-libs/NDMeshStreamer/Make.depends b/src/libs/ck-libs/NDMeshStreamer/Make.depends index f014b5afa3..9f8dd65153 100644 --- a/src/libs/ck-libs/NDMeshStreamer/Make.depends +++ b/src/libs/ck-libs/NDMeshStreamer/Make.depends @@ -27,7 +27,6 @@ NDMeshStreamer.o: NDMeshStreamer.C NDMeshStreamer.h NDMeshStreamer.decl.h \ ../../../../tmp/sockRoutines.h ../../../../tmp/ccs-server.h \ ../../../../tmp/ckobjQ.h ../../../../tmp/ckreduction.h \ ../../../../tmp/CkReduction.decl.h \ - ../../../../tmp/CkArrayReductionMgr.decl.h \ ../../../../tmp/ckmemcheckpoint.h ../../../../tmp/CkMemCheckpoint.decl.h \ ../../../../tmp/readonly.h ../../../../tmp/ckarray.h \ ../../../../tmp/cklocation.h ../../../../tmp/LBDatabase.h \ @@ -43,7 +42,7 @@ NDMeshStreamer.o: NDMeshStreamer.C NDMeshStreamer.h NDMeshStreamer.decl.h \ ../../../../tmp/tempo.decl.h ../../../../tmp/waitqd.h \ ../../../../tmp/waitqd.decl.h ../../../../tmp/ckcheckpoint.h \ ../../../../tmp/ckcallback.h ../../../../tmp/ckevacuation.h \ - ../../../../tmp/ckarrayreductionmgr.h ../../../../tmp/trace.h \ + ../../../../tmp/trace.h \ ../../../../tmp/trace-bluegene.h ../../../../tmp/sdag.h \ ../completion/completion.decl.h DataItemTypes.h \ ../completion/completion.h ../completion/completion.decl.h \ diff --git a/src/libs/ck-libs/ckloop/Make.depends b/src/libs/ck-libs/ckloop/Make.depends index 066edf82cb..1d887785b8 100644 --- a/src/libs/ck-libs/ckloop/Make.depends +++ b/src/libs/ck-libs/ckloop/Make.depends @@ -26,7 +26,6 @@ CkLoop.o: CkLoop.C CkLoop.h ../../../../tmp/charm++.h \ ../../../../tmp/conv-ccs.h ../../../../tmp/sockRoutines.h \ ../../../../tmp/ccs-server.h ../../../../tmp/ckobjQ.h \ ../../../../tmp/ckreduction.h ../../../../tmp/CkReduction.decl.h \ - ../../../../tmp/CkArrayReductionMgr.decl.h \ ../../../../tmp/ckmemcheckpoint.h \ ../../../../tmp/CkMemCheckpoint.decl.h ../../../../tmp/readonly.h \ ../../../../tmp/ckarray.h ../../../../tmp/cklocation.h \ @@ -43,7 +42,7 @@ CkLoop.o: CkLoop.C CkLoop.h ../../../../tmp/charm++.h \ ../../../../tmp/tempo.decl.h ../../../../tmp/waitqd.h \ ../../../../tmp/waitqd.decl.h ../../../../tmp/ckcheckpoint.h \ ../../../../tmp/ckcallback.h ../../../../tmp/ckevacuation.h \ - ../../../../tmp/ckarrayreductionmgr.h ../../../../tmp/trace.h \ + ../../../../tmp/trace.h \ ../../../../tmp/trace-bluegene.h CkLoopAPI.h CkLoop.decl.h \ ../../../../tmp/sdag.h CkLoop.def.h $(CHARMC) -I../../../../tmp -o CkLoop.o CkLoop.C diff --git a/src/libs/ck-libs/completion/Make.depends b/src/libs/ck-libs/completion/Make.depends index 7ccde7b554..9fb7d82795 100644 --- a/src/libs/ck-libs/completion/Make.depends +++ b/src/libs/ck-libs/completion/Make.depends @@ -27,7 +27,6 @@ completion.o: completion.C completion.h completion.decl.h \ ../../../../tmp/sockRoutines.h ../../../../tmp/ccs-server.h \ ../../../../tmp/ckobjQ.h ../../../../tmp/ckreduction.h \ ../../../../tmp/CkReduction.decl.h \ - ../../../../tmp/CkArrayReductionMgr.decl.h \ ../../../../tmp/ckmemcheckpoint.h \ ../../../../tmp/CkMemCheckpoint.decl.h ../../../../tmp/readonly.h \ ../../../../tmp/ckarray.h ../../../../tmp/cklocation.h \ @@ -44,7 +43,7 @@ completion.o: completion.C completion.h completion.decl.h \ ../../../../tmp/tempo.decl.h ../../../../tmp/waitqd.h \ ../../../../tmp/waitqd.decl.h ../../../../tmp/ckcheckpoint.h \ ../../../../tmp/ckcallback.h ../../../../tmp/ckevacuation.h \ - ../../../../tmp/ckarrayreductionmgr.h ../../../../tmp/trace.h \ + ../../../../tmp/trace.h \ ../../../../tmp/trace-bluegene.h ../../../../tmp/sdag.h \ completion.def.h $(CHARMC) -I../../../../tmp -o completion.o completion.C diff --git a/src/libs/ck-libs/dummy/Make.depends b/src/libs/ck-libs/dummy/Make.depends index 893f3e914a..15cc681dbb 100644 --- a/src/libs/ck-libs/dummy/Make.depends +++ b/src/libs/ck-libs/dummy/Make.depends @@ -26,7 +26,6 @@ ckdummy.o: ckdummy.C ../../../../tmp/charm++.h \ ../../../../tmp/conv-ccs.h ../../../../tmp/sockRoutines.h \ ../../../../tmp/ccs-server.h ../../../../tmp/ckobjQ.h \ ../../../../tmp/ckreduction.h ../../../../tmp/CkReduction.decl.h \ - ../../../../tmp/CkArrayReductionMgr.decl.h \ ../../../../tmp/ckmemcheckpoint.h \ ../../../../tmp/CkMemCheckpoint.decl.h ../../../../tmp/readonly.h \ ../../../../tmp/ckarray.h ../../../../tmp/cklocation.h \ @@ -43,7 +42,7 @@ ckdummy.o: ckdummy.C ../../../../tmp/charm++.h \ ../../../../tmp/tempo.decl.h ../../../../tmp/waitqd.h \ ../../../../tmp/waitqd.decl.h ../../../../tmp/ckcheckpoint.h \ ../../../../tmp/ckcallback.h ../../../../tmp/ckevacuation.h \ - ../../../../tmp/ckarrayreductionmgr.h ../../../../tmp/trace.h \ + ../../../../tmp/trace.h \ ../../../../tmp/trace-bluegene.h ../../../../tmp/register.h \ ckdummy.h CkDummy.decl.h ../../../../tmp/sdag.h \ ../../../../tmp/spanningTreeStrategy.h \ diff --git a/src/libs/ck-libs/pose/Make.depends b/src/libs/ck-libs/pose/Make.depends index 889936dd73..c37226c2a4 100644 --- a/src/libs/ck-libs/pose/Make.depends +++ b/src/libs/ck-libs/pose/Make.depends @@ -27,7 +27,6 @@ eventID.o: eventID.C eventID.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -46,7 +45,7 @@ eventID.o: eventID.C eventID.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h $(CHARMC) -o eventID.o eventID.C stats.o: stats.C ../../../../include/charm++.h \ @@ -77,7 +76,6 @@ stats.o: stats.C ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -96,7 +94,7 @@ stats.o: stats.C ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h stats.h stats.decl.h \ ../../../../include/sdag.h pose_config.h \ ../../../../include/conv-config.h stats.def.h @@ -129,7 +127,6 @@ srtable.o: srtable.C ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -148,7 +145,7 @@ srtable.o: srtable.C ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h srtable.h pose.h pose.decl.h \ ../../../../include/sdag.h pose_config.h \ ../../../../include/conv-config.h eventID.h mempool.h mempool.decl.h \ @@ -186,7 +183,6 @@ cancel.o: cancel.C eventID.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -205,7 +201,7 @@ cancel.o: cancel.C eventID.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h pose.h pose.decl.h \ ../../../../include/sdag.h pose_config.h \ ../../../../include/conv-config.h mempool.h mempool.decl.h \ @@ -243,7 +239,6 @@ memory_temporal.o: memory_temporal.C ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -262,7 +257,7 @@ memory_temporal.o: memory_temporal.C ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h pose.h pose.decl.h \ ../../../../include/sdag.h pose_config.h \ ../../../../include/conv-config.h eventID.h mempool.h mempool.decl.h \ @@ -300,7 +295,6 @@ mempool.o: mempool.C ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -319,7 +313,7 @@ mempool.o: mempool.C ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h pose.h pose.decl.h \ ../../../../include/sdag.h pose_config.h \ ../../../../include/conv-config.h eventID.h mempool.h mempool.decl.h \ @@ -357,7 +351,6 @@ pvtobj.o: pvtobj.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -376,7 +369,7 @@ pvtobj.o: pvtobj.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -413,7 +406,6 @@ lbObject.o: lbObject.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -432,7 +424,7 @@ lbObject.o: lbObject.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -469,7 +461,6 @@ ldbal.o: ldbal.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -488,7 +479,7 @@ ldbal.o: ldbal.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -525,7 +516,6 @@ gvt.o: gvt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -544,7 +534,7 @@ gvt.o: gvt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -582,7 +572,6 @@ event.o: event.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -601,7 +590,7 @@ event.o: event.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -638,7 +627,6 @@ eqheap.o: eqheap.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -657,7 +645,7 @@ eqheap.o: eqheap.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -694,7 +682,6 @@ evq.o: evq.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -713,7 +700,7 @@ evq.o: evq.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -750,7 +737,6 @@ sim.o: sim.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -769,7 +755,7 @@ sim.o: sim.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -806,7 +792,6 @@ rep.o: rep.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -825,7 +810,7 @@ rep.o: rep.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -862,7 +847,6 @@ strat.o: strat.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -881,7 +865,7 @@ strat.o: strat.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -918,7 +902,6 @@ seq.o: seq.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -937,7 +920,7 @@ seq.o: seq.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -974,7 +957,6 @@ cons.o: cons.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -993,7 +975,7 @@ cons.o: cons.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1030,7 +1012,6 @@ opt.o: opt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1049,7 +1030,7 @@ opt.o: opt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1086,7 +1067,6 @@ opt2.o: opt2.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1105,7 +1085,7 @@ opt2.o: opt2.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1142,7 +1122,6 @@ opt3.o: opt3.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1161,7 +1140,7 @@ opt3.o: opt3.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1198,7 +1177,6 @@ spec.o: spec.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1217,7 +1195,7 @@ spec.o: spec.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1254,7 +1232,6 @@ adapt.o: adapt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1273,7 +1250,7 @@ adapt.o: adapt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1310,7 +1287,6 @@ adapt2.o: adapt2.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1329,7 +1305,7 @@ adapt2.o: adapt2.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1366,7 +1342,6 @@ adapt3.o: adapt3.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1385,7 +1360,7 @@ adapt3.o: adapt3.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1422,7 +1397,6 @@ adapt4.o: adapt4.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1441,7 +1415,7 @@ adapt4.o: adapt4.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1478,7 +1452,6 @@ adapt5.o: adapt5.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1497,7 +1470,7 @@ adapt5.o: adapt5.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1534,7 +1507,6 @@ pose.o: pose.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1553,7 +1525,7 @@ pose.o: pose.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1590,7 +1562,6 @@ eventID.seq.o: eventID.C eventID.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1609,7 +1580,7 @@ eventID.seq.o: eventID.C eventID.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h $(CHARMC) -o eventID.seq.o -DSEQUENTIAL_POSE=1 eventID.C stats.seq.o: stats.C ../../../../include/charm++.h \ @@ -1640,7 +1611,6 @@ stats.seq.o: stats.C ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1659,7 +1629,7 @@ stats.seq.o: stats.C ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h stats.h stats.decl.h \ ../../../../include/sdag.h pose_config.h \ ../../../../include/conv-config.h stats.def.h @@ -1692,7 +1662,6 @@ srtable.seq.o: srtable.C ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1711,7 +1680,7 @@ srtable.seq.o: srtable.C ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h srtable.h pose.h pose.decl.h \ ../../../../include/sdag.h pose_config.h \ ../../../../include/conv-config.h eventID.h mempool.h mempool.decl.h \ @@ -1749,7 +1718,6 @@ cancel.seq.o: cancel.C eventID.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1768,7 +1736,7 @@ cancel.seq.o: cancel.C eventID.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h pose.h pose.decl.h \ ../../../../include/sdag.h pose_config.h \ ../../../../include/conv-config.h mempool.h mempool.decl.h \ @@ -1806,7 +1774,6 @@ memory_temporal.seq.o: memory_temporal.C ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1825,7 +1792,7 @@ memory_temporal.seq.o: memory_temporal.C ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h pose.h pose.decl.h \ ../../../../include/sdag.h pose_config.h \ ../../../../include/conv-config.h eventID.h mempool.h mempool.decl.h \ @@ -1863,7 +1830,6 @@ mempool.seq.o: mempool.C ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1882,7 +1848,7 @@ mempool.seq.o: mempool.C ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h pose.h pose.decl.h \ ../../../../include/sdag.h pose_config.h \ ../../../../include/conv-config.h eventID.h mempool.h mempool.decl.h \ @@ -1920,7 +1886,6 @@ pvtobj.seq.o: pvtobj.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1939,7 +1904,7 @@ pvtobj.seq.o: pvtobj.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -1976,7 +1941,6 @@ lbObject.seq.o: lbObject.C pose.h pose.decl.h \ ../../../../include/sockRoutines.h ../../../../include/ccs-server.h \ ../../../../include/ckobjQ.h ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -1995,7 +1959,7 @@ lbObject.seq.o: lbObject.C pose.h pose.decl.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2032,7 +1996,6 @@ ldbal.seq.o: ldbal.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2051,7 +2014,7 @@ ldbal.seq.o: ldbal.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2088,7 +2051,6 @@ gvt.seq.o: gvt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2107,7 +2069,7 @@ gvt.seq.o: gvt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2145,7 +2107,6 @@ event.seq.o: event.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2164,7 +2125,7 @@ event.seq.o: event.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2201,7 +2162,6 @@ eqheap.seq.o: eqheap.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2220,7 +2180,7 @@ eqheap.seq.o: eqheap.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2257,7 +2217,6 @@ evq.seq.o: evq.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2276,7 +2235,7 @@ evq.seq.o: evq.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2313,7 +2272,6 @@ sim.seq.o: sim.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2332,7 +2290,7 @@ sim.seq.o: sim.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2369,7 +2327,6 @@ rep.seq.o: rep.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2388,7 +2345,7 @@ rep.seq.o: rep.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2425,7 +2382,6 @@ strat.seq.o: strat.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2444,7 +2400,7 @@ strat.seq.o: strat.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2481,7 +2437,6 @@ seq.seq.o: seq.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2500,7 +2455,7 @@ seq.seq.o: seq.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2537,7 +2492,6 @@ cons.seq.o: cons.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2556,7 +2510,7 @@ cons.seq.o: cons.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2593,7 +2547,6 @@ opt.seq.o: opt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2612,7 +2565,7 @@ opt.seq.o: opt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2649,7 +2602,6 @@ opt2.seq.o: opt2.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2668,7 +2620,7 @@ opt2.seq.o: opt2.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2705,7 +2657,6 @@ opt3.seq.o: opt3.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2724,7 +2675,7 @@ opt3.seq.o: opt3.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2761,7 +2712,6 @@ spec.seq.o: spec.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2780,7 +2730,7 @@ spec.seq.o: spec.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2817,7 +2767,6 @@ adapt.seq.o: adapt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2836,7 +2785,7 @@ adapt.seq.o: adapt.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2873,7 +2822,6 @@ adapt2.seq.o: adapt2.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2892,7 +2840,7 @@ adapt2.seq.o: adapt2.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2929,7 +2877,6 @@ adapt3.seq.o: adapt3.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -2948,7 +2895,7 @@ adapt3.seq.o: adapt3.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -2985,7 +2932,6 @@ adapt4.seq.o: adapt4.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -3004,7 +2950,7 @@ adapt4.seq.o: adapt4.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -3041,7 +2987,6 @@ adapt5.seq.o: adapt5.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -3060,7 +3005,7 @@ adapt5.seq.o: adapt5.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ @@ -3097,7 +3042,6 @@ pose.seq.o: pose.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/ccs-server.h ../../../../include/ckobjQ.h \ ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -3116,7 +3060,7 @@ pose.seq.o: pose.C pose.h pose.decl.h ../../../../include/charm++.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ pose_config.h ../../../../include/conv-config.h eventID.h mempool.h \ mempool.decl.h memory_temporal.h memory_temporal.decl.h srtable.h \ diff --git a/src/libs/ck-libs/tcharm/Make.depends b/src/libs/ck-libs/tcharm/Make.depends index f4b57e79ab..65715b4077 100644 --- a/src/libs/ck-libs/tcharm/Make.depends +++ b/src/libs/ck-libs/tcharm/Make.depends @@ -29,7 +29,6 @@ tcharm.o: tcharm.C tcharm_impl.h ../../../../include/pup.h \ ../../../../include/sockRoutines.h ../../../../include/ccs-server.h \ ../../../../include/ckobjQ.h ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -48,7 +47,7 @@ tcharm.o: tcharm.C tcharm_impl.h ../../../../include/pup.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ tcharm.h ../../../../include/ckcheckpoint.h \ ../../../../include/mempool.h ../../../../include/ckevacuation.h \ @@ -84,7 +83,6 @@ tcharmmain.o: tcharmmain.C tcharm_impl.h ../../../../include/pup.h \ ../../../../include/sockRoutines.h ../../../../include/ccs-server.h \ ../../../../include/ckobjQ.h ../../../../include/ckreduction.h \ ../../../../include/CkReduction.decl.h \ - ../../../../include/CkArrayReductionMgr.decl.h \ ../../../../include/ckmemcheckpoint.h \ ../../../../include/CkMemCheckpoint.decl.h \ ../../../../include/readonly.h ../../../../include/ckarray.h \ @@ -103,7 +101,7 @@ tcharmmain.o: tcharmmain.C tcharm_impl.h ../../../../include/pup.h \ ../../../../include/waitqd.h ../../../../include/waitqd.decl.h \ ../../../../include/ckcheckpoint.h ../../../../include/ckcallback.h \ ../../../../include/ckevacuation.h \ - ../../../../include/ckarrayreductionmgr.h ../../../../include/trace.h \ + ../../../../include/trace.h \ ../../../../include/trace-bluegene.h ../../../../include/sdag.h \ tcharm.h ../../../../include/ckcheckpoint.h tcharmmain.decl.h \ tcharmmain.def.h diff --git a/src/scripts/Make.cidepends b/src/scripts/Make.cidepends index 2702d40f38..9101c8cab9 100644 --- a/src/scripts/Make.cidepends +++ b/src/scripts/Make.cidepends @@ -58,7 +58,6 @@ TreeMatchLB.decl.h TreeMatchLB.def.h: TreeMatchLB.ci.stamp WSLB.decl.h WSLB.def.h: WSLB.ci.stamp ZoltanLB.decl.h ZoltanLB.def.h: ZoltanLB.ci.stamp CkArray.decl.h CkArray.def.h: ckarray.ci.stamp -CkArrayReductionMgr.decl.h CkArrayReductionMgr.def.h: ckarrayreductionmgr.ci.stamp CkCallback.decl.h CkCallback.def.h: ckcallback.ci.stamp CkCheckpoint.decl.h CkCheckpoint.def.h: ckcheckpoint.ci.stamp CkCheckpointStatus.decl.h CkCheckpointStatus.def.h: ckcheckpointstatus.ci.stamp diff --git a/src/scripts/Make.depends b/src/scripts/Make.depends index 696252683c..1d233a559c 100644 --- a/src/scripts/Make.depends +++ b/src/scripts/Make.depends @@ -11,14 +11,13 @@ AdaptiveLB.o: AdaptiveLB.C AdaptiveLB.h CentralLB.h BaseLB.h LBDatabase.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ AdaptiveLB.decl.h ckgraph.h AdaptiveLB.def.h @@ -32,15 +31,14 @@ BaseLB.o: BaseLB.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h BaseLB.h \ + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h BaseLB.h \ LBSimulation.h charm++.h CentralLB.h CentralLB.decl.h CentralLBMsg.h \ pup_stl.h manager.h BaseLB.def.h @@ -54,17 +52,17 @@ BlockLB.o: BlockLB.C BlockLB.decl.h charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.decl.h CentralLBMsg.h BlockLB.h CentralLB.h \ - BaseLB.h pup_stl.h manager.h BlockLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + CentralLB.decl.h CentralLBMsg.h BlockLB.h CentralLB.h BaseLB.h pup_stl.h \ + manager.h BlockLB.def.h BlueGene.o: BlueGene.C BlueGene.h BlueGene.decl.h charm++.h charm.h \ converse.h conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -76,16 +74,15 @@ BlueGene.o: BlueGene.C BlueGene.h BlueGene.decl.h charm++.h charm.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h BlueGene.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h BlueGene.def.h CentralLB.o: CentralLB.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -97,15 +94,14 @@ CentralLB.o: CentralLB.C charm++.h charm.h converse.h conv-config.h \ objid.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h charm++.h \ + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h charm++.h \ envelope.h qd.h register.h stats.h ckfutures.h ../include/TopoManager.h \ ../include/topomanager_config.h ../include/converse.h CentralLB.h \ BaseLB.h LBDatabase.h CentralLB.decl.h sdag.h BaseLB.decl.h \ @@ -122,18 +118,17 @@ CentralPredictor.o: CentralPredictor.C charm++.h charm.h converse.h \ envelope.h charm.h middle.h cklists.h objid.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.h BaseLB.h LBDatabase.h CentralLB.decl.h \ - charm++.h envelope.h sdag.h BaseLB.decl.h LBDatabase.decl.h \ - CentralLBMsg.h pup_stl.h manager.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h CentralLB.h \ + BaseLB.h LBDatabase.h CentralLB.decl.h charm++.h envelope.h sdag.h \ + BaseLB.decl.h LBDatabase.decl.h CentralLBMsg.h pup_stl.h manager.h ComboCentLB.o: ComboCentLB.C ComboCentLB.h CentralLB.h BaseLB.h \ LBDatabase.h lbdb.h converse.h conv-config.h conv-autoconfig.h \ @@ -147,14 +142,13 @@ ComboCentLB.o: ComboCentLB.C ComboCentLB.h CentralLB.h BaseLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ ComboCentLB.decl.h ComboCentLB.def.h @@ -170,14 +164,13 @@ CommAwareRefineLB.o: CommAwareRefineLB.C CommAwareRefineLB.h CentralLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ CommAwareRefineLB.decl.h ckgraph.h CommAwareRefineLB.def.h @@ -192,14 +185,13 @@ CommLB.o: CommLB.C CommLB.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ CkMarshall.decl.h envelope.h charm.h middle.h cklists.h objid.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ CommLB.decl.h charm++.h envelope.h sdag.h CentralLB.decl.h CommLBHeap.h \ GreedyCommLB.h CentralLB.h GreedyCommLB.decl.h CommLB.def.h @@ -214,15 +206,14 @@ CommLBHeap.o: CommLBHeap.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h CommLBHeap.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h CommLBHeap.h CommonLBs.o: CommonLBs.C LBDatabase.h lbdb.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -235,18 +226,17 @@ CommonLBs.o: CommonLBs.C LBDatabase.h lbdb.h converse.h conv-config.h \ charm.h middle.h cklists.h objid.h sdag.h pup_stl.h conv-config.h \ envelope.h debug-charm.h ckarrayindex.h objid.h cksection.h ckcallback.h \ conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h \ - CkReduction.decl.h CkArrayReductionMgr.decl.h ckmemcheckpoint.h \ - CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ - ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h NullLB.decl.h BaseLB.decl.h CommonLBs.decl.h \ - charm++.h envelope.h sdag.h DummyLB.decl.h CentralLB.decl.h \ - BaseLB.decl.h LBDatabase.decl.h CentralLBMsg.h GreedyLB.decl.h \ - GreedyRefineLB.decl.h CommLB.decl.h RandCentLB.decl.h RefineLB.decl.h \ - RefineCommLB.decl.h RotateLB.decl.h DistributedLB.decl.h \ + CkReduction.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h \ + ckarray.h cklocation.h LBDatabase.h MetaBalancer.h MetaBalancer.decl.h \ + CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ + CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ + tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + CommonLBs.decl.h charm++.h envelope.h sdag.h DummyLB.decl.h \ + CentralLB.decl.h BaseLB.decl.h LBDatabase.decl.h CentralLBMsg.h \ + GreedyLB.decl.h GreedyRefineLB.decl.h CommLB.decl.h RandCentLB.decl.h \ + RefineLB.decl.h RefineCommLB.decl.h RotateLB.decl.h DistributedLB.decl.h \ DistBaseLB.decl.h HybridLB.decl.h HybridBaseLB.decl.h NeighborLBMsg.h \ HybridLBMsg.h ComboCentLB.decl.h RefineSwapLB.decl.h NeighborLB.decl.h \ NborBaseLB.decl.h OrbLB.decl.h BlockLB.decl.h GreedyCommLB.decl.h \ @@ -264,14 +254,14 @@ DistBaseLB.o: DistBaseLB.C BaseLB.h LBDatabase.h lbdb.h converse.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h DistBaseLB.h DistBaseLB.decl.h DistBaseLB.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + DistBaseLB.h DistBaseLB.decl.h DistBaseLB.def.h DistributedLB.o: DistributedLB.C DistributedLB.h DistBaseLB.h BaseLB.h \ LBDatabase.h lbdb.h converse.h conv-config.h conv-autoconfig.h \ @@ -285,14 +275,13 @@ DistributedLB.o: DistributedLB.C DistributedLB.h DistBaseLB.h BaseLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h DistBaseLB.decl.h DistributedLB.decl.h ckheap.h elements.h \ ckset.h DistributedLB.def.h @@ -308,15 +297,15 @@ DummyLB.o: DummyLB.C DummyLB.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ - DummyLB.decl.h DummyLB.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h DummyLB.decl.h \ + DummyLB.def.h EveryLB.o: EveryLB.C LBDatabase.h lbdb.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -329,26 +318,25 @@ EveryLB.o: EveryLB.C LBDatabase.h lbdb.h converse.h conv-config.h \ charm.h middle.h cklists.h objid.h sdag.h pup_stl.h conv-config.h \ envelope.h debug-charm.h ckarrayindex.h objid.h cksection.h ckcallback.h \ conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h \ - CkReduction.decl.h CkArrayReductionMgr.decl.h ckmemcheckpoint.h \ - CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ - ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h NullLB.decl.h BaseLB.decl.h EveryLB.decl.h charm++.h \ - envelope.h sdag.h DummyLB.decl.h CentralLB.decl.h BaseLB.decl.h \ - LBDatabase.decl.h CentralLBMsg.h GreedyLB.decl.h GreedyRefineLB.decl.h \ - CommLB.decl.h RandCentLB.decl.h RefineLB.decl.h RefineCommLB.decl.h \ - RotateLB.decl.h DistributedLB.decl.h DistBaseLB.decl.h HybridLB.decl.h \ - HybridBaseLB.decl.h NeighborLBMsg.h HybridLBMsg.h ComboCentLB.decl.h \ - RefineSwapLB.decl.h NeighborLB.decl.h NborBaseLB.decl.h OrbLB.decl.h \ - BlockLB.decl.h GreedyCommLB.decl.h NodeLevelLB.decl.h GraphPartLB.decl.h \ - GraphBFTLB.decl.h GridCommLB.decl.h GridCommRefineLB.decl.h HbmLB.decl.h \ - RefineKLB.decl.h TempAwareCommLB.decl.h TreeMatchLB.decl.h \ - GreedyAgentLB.decl.h NeighborCommLB.decl.h PhasebyArrayLB.decl.h \ - RecBipartLB.decl.h CommAwareRefineLB.decl.h AdaptiveLB.decl.h \ - EveryLB.def.h + CkReduction.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h \ + ckarray.h cklocation.h LBDatabase.h MetaBalancer.h MetaBalancer.decl.h \ + CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ + CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ + tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + EveryLB.decl.h charm++.h envelope.h sdag.h DummyLB.decl.h \ + CentralLB.decl.h BaseLB.decl.h LBDatabase.decl.h CentralLBMsg.h \ + GreedyLB.decl.h GreedyRefineLB.decl.h CommLB.decl.h RandCentLB.decl.h \ + RefineLB.decl.h RefineCommLB.decl.h RotateLB.decl.h DistributedLB.decl.h \ + DistBaseLB.decl.h HybridLB.decl.h HybridBaseLB.decl.h NeighborLBMsg.h \ + HybridLBMsg.h ComboCentLB.decl.h RefineSwapLB.decl.h NeighborLB.decl.h \ + NborBaseLB.decl.h OrbLB.decl.h BlockLB.decl.h GreedyCommLB.decl.h \ + NodeLevelLB.decl.h GraphPartLB.decl.h GraphBFTLB.decl.h \ + GridCommLB.decl.h GridCommRefineLB.decl.h HbmLB.decl.h RefineKLB.decl.h \ + TempAwareCommLB.decl.h TreeMatchLB.decl.h GreedyAgentLB.decl.h \ + NeighborCommLB.decl.h PhasebyArrayLB.decl.h RecBipartLB.decl.h \ + CommAwareRefineLB.decl.h AdaptiveLB.decl.h EveryLB.def.h GraphBFTLB.o: GraphBFTLB.C GraphBFTLB.h CentralLB.h BaseLB.h LBDatabase.h \ lbdb.h converse.h conv-config.h conv-autoconfig.h conv-common.h \ @@ -362,14 +350,13 @@ GraphBFTLB.o: GraphBFTLB.C GraphBFTLB.h CentralLB.h BaseLB.h LBDatabase.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ GraphBFTLB.decl.h ckgraph.h GraphBFTLB.def.h @@ -385,14 +372,13 @@ GraphPartLB.o: GraphPartLB.C GraphPartLB.h CentralLB.h BaseLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ GraphPartLB.decl.h ckgraph.h GraphPartLB.def.h @@ -406,19 +392,18 @@ GreedyAgentLB.o: GreedyAgentLB.C LBSimulation.h charm++.h charm.h \ envelope.h charm.h middle.h cklists.h objid.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.h BaseLB.h CentralLB.decl.h CentralLBMsg.h \ - pup_stl.h manager.h GreedyAgentLB.h CentralLB.h GreedyAgentLB.decl.h \ - charm++.h envelope.h sdag.h CentralLB.decl.h LBAgent.h topology.h \ - GreedyAgentLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h CentralLB.h \ + BaseLB.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ + GreedyAgentLB.h CentralLB.h GreedyAgentLB.decl.h charm++.h envelope.h \ + sdag.h CentralLB.decl.h LBAgent.h topology.h GreedyAgentLB.def.h GreedyCommLB.o: GreedyCommLB.C elements.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -432,14 +417,13 @@ GreedyCommLB.o: GreedyCommLB.C elements.h converse.h conv-config.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ GreedyCommLB.decl.h CommLBHeap.h GreedyCommLB.def.h @@ -453,17 +437,16 @@ GreedyLB.o: GreedyLB.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h ckgraph.h BaseLB.h \ - GreedyLB.h CentralLB.h CentralLB.decl.h CentralLBMsg.h pup_stl.h \ - manager.h GreedyLB.decl.h GreedyLB.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ckgraph.h \ + BaseLB.h GreedyLB.h CentralLB.h CentralLB.decl.h CentralLBMsg.h \ + pup_stl.h manager.h GreedyLB.decl.h GreedyLB.def.h GreedyRefineLB.o: GreedyRefineLB.C charm++.h charm.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -475,18 +458,17 @@ GreedyRefineLB.o: GreedyRefineLB.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h ckgraph.h BaseLB.h GreedyRefineLB.h CentralLB.h \ - CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ - GreedyRefineLB.decl.h GreedyRefineLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ckgraph.h \ + BaseLB.h GreedyRefineLB.h CentralLB.h CentralLB.decl.h CentralLBMsg.h \ + pup_stl.h manager.h GreedyRefineLB.decl.h GreedyRefineLB.def.h GridCommLB.o: GridCommLB.C GridCommLB.decl.h charm++.h charm.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -498,17 +480,17 @@ GridCommLB.o: GridCommLB.C GridCommLB.decl.h charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.decl.h CentralLBMsg.h GridCommLB.h \ - CentralLB.h BaseLB.h pup_stl.h manager.h GridCommLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + CentralLB.decl.h CentralLBMsg.h GridCommLB.h CentralLB.h BaseLB.h \ + pup_stl.h manager.h GridCommLB.def.h GridCommRefineLB.o: GridCommRefineLB.C GridCommRefineLB.decl.h charm++.h \ charm.h converse.h conv-config.h conv-autoconfig.h conv-common.h \ @@ -520,17 +502,17 @@ GridCommRefineLB.o: GridCommRefineLB.C GridCommRefineLB.decl.h charm++.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.decl.h CentralLBMsg.h GridCommRefineLB.h \ - CentralLB.h BaseLB.h pup_stl.h manager.h GridCommRefineLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + CentralLB.decl.h CentralLBMsg.h GridCommRefineLB.h CentralLB.h BaseLB.h \ + pup_stl.h manager.h GridCommRefineLB.def.h GridHybridLB.o: GridHybridLB.C GridHybridLB.decl.h charm++.h charm.h \ converse.h conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -542,17 +524,17 @@ GridHybridLB.o: GridHybridLB.C GridHybridLB.decl.h charm++.h charm.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.decl.h CentralLBMsg.h GridHybridLB.h \ - CentralLB.h BaseLB.h pup_stl.h manager.h GridHybridLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + CentralLB.decl.h CentralLBMsg.h GridHybridLB.h CentralLB.h BaseLB.h \ + pup_stl.h manager.h GridHybridLB.def.h GridHybridSeedLB.o: GridHybridSeedLB.C GridHybridSeedLB.decl.h charm++.h \ charm.h converse.h conv-config.h conv-autoconfig.h conv-common.h \ @@ -564,17 +546,17 @@ GridHybridSeedLB.o: GridHybridSeedLB.C GridHybridSeedLB.decl.h charm++.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.decl.h CentralLBMsg.h GridHybridSeedLB.h \ - CentralLB.h BaseLB.h pup_stl.h manager.h GridHybridSeedLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + CentralLB.decl.h CentralLBMsg.h GridHybridSeedLB.h CentralLB.h BaseLB.h \ + pup_stl.h manager.h GridHybridSeedLB.def.h GridMetisLB.o: GridMetisLB.C GridMetisLB.decl.h charm++.h charm.h \ converse.h conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -586,17 +568,17 @@ GridMetisLB.o: GridMetisLB.C GridMetisLB.decl.h charm++.h charm.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.decl.h CentralLBMsg.h GridMetisLB.h \ - CentralLB.h BaseLB.h pup_stl.h manager.h GridMetisLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + CentralLB.decl.h CentralLBMsg.h GridMetisLB.h CentralLB.h BaseLB.h \ + pup_stl.h manager.h GridMetisLB.def.h HbmLB.o: HbmLB.C HbmLB.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ converse.h conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -610,18 +592,18 @@ HbmLB.o: HbmLB.C HbmLB.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ - HbmLB.decl.h NeighborLBMsg.h HybridLBMsg.h topology.h GreedyLB.h \ - GreedyLB.decl.h GreedyCommLB.h GreedyCommLB.decl.h CommLBHeap.h \ - RefineCommLB.h RefinerComm.h Refiner.h elements.h ckset.h ckheap.h \ - RefineLB.h RefineLB.decl.h RefineCommLB.decl.h HbmLB.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h HbmLB.decl.h \ + NeighborLBMsg.h HybridLBMsg.h topology.h GreedyLB.h GreedyLB.decl.h \ + GreedyCommLB.h GreedyCommLB.decl.h CommLBHeap.h RefineCommLB.h \ + RefinerComm.h Refiner.h elements.h ckset.h ckheap.h RefineLB.h \ + RefineLB.decl.h RefineCommLB.decl.h HbmLB.def.h HybridBaseLB.o: HybridBaseLB.C HybridBaseLB.h charm++.h charm.h \ converse.h conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -633,21 +615,20 @@ HybridBaseLB.o: HybridBaseLB.C HybridBaseLB.h charm++.h charm.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h BaseLB.h CentralLB.h CentralLB.decl.h CentralLBMsg.h \ - pup_stl.h manager.h HybridBaseLB.decl.h NeighborLBMsg.h HybridLBMsg.h \ - topology.h GreedyLB.h GreedyLB.decl.h GreedyCommLB.h GreedyCommLB.decl.h \ - CommLBHeap.h RefineCommLB.h RefinerComm.h Refiner.h elements.h ckset.h \ - ckheap.h RefineLB.h RefineLB.decl.h RefineCommLB.decl.h \ - HybridBaseLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h BaseLB.h \ + CentralLB.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ + HybridBaseLB.decl.h NeighborLBMsg.h HybridLBMsg.h topology.h GreedyLB.h \ + GreedyLB.decl.h GreedyCommLB.h GreedyCommLB.decl.h CommLBHeap.h \ + RefineCommLB.h RefinerComm.h Refiner.h elements.h ckset.h ckheap.h \ + RefineLB.h RefineLB.decl.h RefineCommLB.decl.h HybridBaseLB.def.h HybridLB.o: HybridLB.C HybridLB.h CentralLB.h BaseLB.h LBDatabase.h \ lbdb.h converse.h conv-config.h conv-autoconfig.h conv-common.h \ @@ -661,14 +642,13 @@ HybridLB.o: HybridLB.C HybridLB.h CentralLB.h BaseLB.h LBDatabase.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ HybridBaseLB.h HybridBaseLB.decl.h NeighborLBMsg.h HybridLBMsg.h \ topology.h HybridLB.decl.h GreedyLB.h GreedyLB.decl.h GreedyCommLB.h \ @@ -688,15 +668,14 @@ LBAgent.o: LBAgent.C LBAgent.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ - topology.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h topology.h LBComm.o: LBComm.C converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -714,15 +693,14 @@ LBDBManager.o: LBDBManager.C charm++.h charm.h converse.h conv-config.h \ objid.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h LBDBManager.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h LBDBManager.h LBDatabase.o: LBDatabase.C converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -735,14 +713,13 @@ LBDatabase.o: LBDatabase.C converse.h conv-config.h conv-autoconfig.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h LBSimulation.h charm++.h CentralLB.h BaseLB.h \ CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h topology.h NullLB.h \ BaseLB.h LBDatabase.def.h @@ -759,14 +736,13 @@ LBMachineUtil.o: LBMachineUtil.C LBDatabase.h lbdb.h converse.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h LBObj.o: LBObj.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -778,15 +754,14 @@ LBObj.o: LBObj.C charm++.h charm.h converse.h conv-config.h \ objid.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h LBObj.h LBOM.h \ + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h LBObj.h LBOM.h \ LBDBManager.h LBProfit.o: LBProfit.C converse.h conv-config.h conv-autoconfig.h \ @@ -797,17 +772,16 @@ LBProfit.o: LBProfit.C converse.h conv-config.h conv-autoconfig.h \ LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ charm++.h ckbitvector.h ckstream.h init.h ckhashtable.h debug-charm.h \ debug-conv++.h simd.h ckmessage.h pup.h CkMarshall.decl.h envelope.h \ - charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ - pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ - cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ + pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ + cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h LBSimulation.o: LBSimulation.C LBSimulation.h charm++.h charm.h \ @@ -820,18 +794,17 @@ LBSimulation.o: LBSimulation.C LBSimulation.h charm++.h charm.h \ envelope.h charm.h middle.h cklists.h objid.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.h BaseLB.h LBDatabase.h CentralLB.decl.h \ - charm++.h envelope.h sdag.h BaseLB.decl.h LBDatabase.decl.h \ - CentralLBMsg.h pup_stl.h manager.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h CentralLB.h \ + BaseLB.h LBDatabase.h CentralLB.decl.h charm++.h envelope.h sdag.h \ + BaseLB.decl.h LBDatabase.decl.h CentralLBMsg.h pup_stl.h manager.h LButil.o: LButil.C elements.h converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -845,14 +818,13 @@ LButil.o: LButil.C elements.h converse.h conv-config.h conv-autoconfig.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.o: MetaBalancer.C converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -865,14 +837,14 @@ MetaBalancer.o: MetaBalancer.C converse.h conv-config.h conv-autoconfig.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h \ + CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h MetaBalancer.decl.h topology.h MetaBalancer.def.h + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.decl.h topology.h MetaBalancer.def.h MetisLB.o: MetisLB.C MetisLB.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ converse.h conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -886,15 +858,15 @@ MetisLB.o: MetisLB.C MetisLB.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ - MetisLB.decl.h ckgraph.h MetisLB.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h MetisLB.decl.h \ + ckgraph.h MetisLB.def.h NborBaseLB.o: NborBaseLB.C BaseLB.h LBDatabase.h lbdb.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -908,14 +880,14 @@ NborBaseLB.o: NborBaseLB.C BaseLB.h LBDatabase.h lbdb.h converse.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h NborBaseLB.h NborBaseLB.decl.h NeighborLBMsg.h topology.h \ + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + NborBaseLB.h NborBaseLB.decl.h NeighborLBMsg.h topology.h \ NborBaseLB.def.h NeighborCommLB.o: NeighborCommLB.C elements.h converse.h conv-config.h \ @@ -930,14 +902,13 @@ NeighborCommLB.o: NeighborCommLB.C elements.h converse.h conv-config.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h NborBaseLB.decl.h NeighborLBMsg.h topology.h \ NeighborCommLB.decl.h NeighborCommLB.def.h @@ -953,14 +924,13 @@ NeighborLB.o: NeighborLB.C elements.h converse.h conv-config.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h NborBaseLB.decl.h NeighborLBMsg.h topology.h \ NeighborLB.decl.h NeighborLB.def.h @@ -976,14 +946,13 @@ NodeLevelLB.o: NodeLevelLB.C NodeLevelLB.h CentralLB.h BaseLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ HybridBaseLB.h HybridBaseLB.decl.h NeighborLBMsg.h HybridLBMsg.h \ topology.h NodeLevelLB.decl.h NodeLevelLB.def.h @@ -999,14 +968,13 @@ NullLB.o: NullLB.C NullLB.h BaseLB.h LBDatabase.h lbdb.h converse.h \ CkMarshall.decl.h envelope.h charm.h middle.h cklists.h objid.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h NullLB.decl.h ck.h charm++.h envelope.h qd.h register.h \ stats.h ckfutures.h ../include/TopoManager.h \ ../include/topomanager_config.h ../include/converse.h NullLB.def.h @@ -1023,15 +991,15 @@ OrbLB.o: OrbLB.C OrbLB.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ - OrbLB.decl.h OrbLB.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h OrbLB.decl.h \ + OrbLB.def.h PhasebyArrayLB.o: PhasebyArrayLB.C PhasebyArrayLB.h CentralLB.h BaseLB.h \ LBDatabase.h lbdb.h converse.h conv-config.h conv-autoconfig.h \ @@ -1045,14 +1013,13 @@ PhasebyArrayLB.o: PhasebyArrayLB.C PhasebyArrayLB.h CentralLB.h BaseLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ PhasebyArrayLB.decl.h PhasebyArrayLB.def.h @@ -1068,14 +1035,13 @@ RandCentLB.o: RandCentLB.C RandCentLB.h CentralLB.h BaseLB.h LBDatabase.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ RandCentLB.decl.h RandCentLB.def.h @@ -1091,14 +1057,13 @@ RecBipartLB.o: RecBipartLB.C RecBipartLB.h CentralLB.h BaseLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ RecBipartLB.decl.h ckgraph.h RecBipartLB.def.h @@ -1114,14 +1079,13 @@ RefineCommLB.o: RefineCommLB.C elements.h converse.h conv-config.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ RefinerComm.h Refiner.h RefineLB.h RefineLB.decl.h RefineCommLB.decl.h \ RefineCommLB.def.h @@ -1138,14 +1102,13 @@ RefineKLB.o: RefineKLB.C elements.h converse.h conv-config.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ RefinerApprox.h Refiner.h RefineKLB.decl.h RefineKLB.def.h @@ -1161,14 +1124,13 @@ RefineLB.o: RefineLB.C elements.h converse.h conv-config.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ Refiner.h RefineLB.decl.h RefineLB.def.h @@ -1184,14 +1146,13 @@ RefineSwapLB.o: RefineSwapLB.C RefineSwapLB.h CentralLB.h BaseLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ RefineSwapLB.decl.h ckgraph.h RefineSwapLB.def.h @@ -1205,18 +1166,17 @@ RefineTopoLB.o: RefineTopoLB.C RefineTopoLB.decl.h charm++.h charm.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h TopoLB.decl.h CentralLB.decl.h CentralLBMsg.h \ - RefineTopoLB.h CentralLB.h BaseLB.h pup_stl.h manager.h TopoLB.h \ - topology.h RefineTopoLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h TopoLB.decl.h \ + CentralLB.decl.h CentralLBMsg.h RefineTopoLB.h CentralLB.h BaseLB.h \ + pup_stl.h manager.h TopoLB.h topology.h RefineTopoLB.def.h Refiner.o: Refiner.C Refiner.h elements.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1230,14 +1190,13 @@ Refiner.o: Refiner.C Refiner.h elements.h converse.h conv-config.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h RefinerApprox.o: RefinerApprox.C elements.h converse.h conv-config.h \ @@ -1252,14 +1211,13 @@ RefinerApprox.o: RefinerApprox.C elements.h converse.h conv-config.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ Refiner.h @@ -1275,14 +1233,13 @@ RefinerComm.o: RefinerComm.C elements.h converse.h conv-config.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ Refiner.h @@ -1299,14 +1256,14 @@ RefinerTemp.o: RefinerTemp.C RefinerTemp.h elements.h converse.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h RotateLB.o: RotateLB.C RotateLB.decl.h charm++.h charm.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -1318,17 +1275,17 @@ RotateLB.o: RotateLB.C RotateLB.decl.h charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.decl.h CentralLBMsg.h RotateLB.h \ - CentralLB.h BaseLB.h pup_stl.h manager.h RotateLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + CentralLB.decl.h CentralLBMsg.h RotateLB.h CentralLB.h BaseLB.h \ + pup_stl.h manager.h RotateLB.def.h ScotchLB.o: ScotchLB.C ScotchLB.h CentralLB.h BaseLB.h LBDatabase.h \ lbdb.h converse.h conv-config.h conv-autoconfig.h conv-common.h \ @@ -1342,14 +1299,13 @@ ScotchLB.o: ScotchLB.C ScotchLB.h CentralLB.h BaseLB.h LBDatabase.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ ScotchLB.decl.h ckgraph.h ScotchLB.def.h @@ -1365,15 +1321,15 @@ TeamLB.o: TeamLB.C TeamLB.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ - TeamLB.decl.h ckgraph.h TeamLB.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h TeamLB.decl.h \ + ckgraph.h TeamLB.def.h TempAwareCommLB.o: TempAwareCommLB.C TempAwareCommLB.h CentralLB.h \ BaseLB.h LBDatabase.h lbdb.h converse.h conv-config.h conv-autoconfig.h \ @@ -1387,14 +1343,13 @@ TempAwareCommLB.o: TempAwareCommLB.C TempAwareCommLB.h CentralLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ TempAwareCommLB.decl.h ckgraphTemp.h ckgraph.h TempAwareCommLB.def.h @@ -1410,14 +1365,13 @@ TempAwareGreedyLB.o: TempAwareGreedyLB.C TempAwareGreedyLB.h CentralLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ TempAwareGreedyLB.decl.h ckgraph.h TempAwareGreedyLB.def.h @@ -1433,14 +1387,13 @@ TempAwareRefineLB.o: TempAwareRefineLB.C TempAwareRefineLB.h CentralLB.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ - cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ - CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ - waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h \ RefinerTemp.h elements.h ckset.h ckheap.h TempAwareRefineLB.decl.h \ ckgraph.h TempAwareRefineLB.def.h @@ -1455,17 +1408,17 @@ TopoCentLB.o: TopoCentLB.C TopoCentLB.decl.h charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.decl.h CentralLBMsg.h TopoCentLB.h \ - CentralLB.h BaseLB.h pup_stl.h manager.h topology.h TopoCentLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + CentralLB.decl.h CentralLBMsg.h TopoCentLB.h CentralLB.h BaseLB.h \ + pup_stl.h manager.h topology.h TopoCentLB.def.h TopoLB.o: TopoLB.C TopoLB.decl.h charm++.h charm.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -1477,17 +1430,17 @@ TopoLB.o: TopoLB.C TopoLB.decl.h charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h CentralLB.decl.h CentralLBMsg.h TopoLB.h CentralLB.h \ - BaseLB.h pup_stl.h manager.h topology.h TopoLB.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + CentralLB.decl.h CentralLBMsg.h TopoLB.h CentralLB.h BaseLB.h pup_stl.h \ + manager.h topology.h TopoLB.def.h TreeMatchLB.o: TreeMatchLB.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1499,19 +1452,18 @@ TreeMatchLB.o: TreeMatchLB.C charm++.h charm.h converse.h conv-config.h \ objid.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h tm_tree.h tm_mapping.h \ - TreeMatchLB.h CentralLB.h BaseLB.h LBDatabase.h CentralLB.decl.h \ - charm++.h envelope.h sdag.h BaseLB.decl.h LBDatabase.decl.h \ - CentralLBMsg.h pup_stl.h manager.h TreeMatchLB.decl.h ckgraph.h \ - TreeMatchLB.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h tm_tree.h \ + tm_mapping.h TreeMatchLB.h CentralLB.h BaseLB.h LBDatabase.h \ + CentralLB.decl.h charm++.h envelope.h sdag.h BaseLB.decl.h \ + LBDatabase.decl.h CentralLBMsg.h pup_stl.h manager.h TreeMatchLB.decl.h \ + ckgraph.h TreeMatchLB.def.h WSLB.o: WSLB.C elements.h converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -1525,14 +1477,14 @@ WSLB.o: WSLB.C elements.h converse.h conv-config.h conv-autoconfig.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h WSLB.decl.h topology.h WSLB.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h WSLB.decl.h \ + topology.h WSLB.def.h arrayRedistributor.o: arrayRedistributor.C charm++.h charm.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -1544,18 +1496,20 @@ arrayRedistributor.o: arrayRedistributor.C charm++.h charm.h converse.h \ envelope.h charm.h middle.h cklists.h objid.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h trace-controlPoints.h trace.h envelope.h register.h \ - trace-common.h LBDatabase.h controlPoints.h conv-config.h pathHistory.h \ - arrayRedistributor.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + trace-controlPoints.h trace.h envelope.h register.h trace-common.h \ + LBDatabase.h controlPoints.h conv-config.h ControlPoints.decl.h \ + charm++.h sdag.h charm-api.h arrayRedistributor.h pathHistory.h \ + cp_effects.h ck.h qd.h register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h ckarray.h bigsim_api.o: bigsim_api.C blue.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1609,15 +1563,15 @@ bigsim_proc.o: bigsim_proc.C blue.h converse.h conv-config.h \ debug-conv++.h simd.h CkMarshall.decl.h envelope.h charm.h middle.h \ cklists.h objid.h sdag.h pup_stl.h conv-config.h envelope.h \ debug-charm.h ckarrayindex.h cksection.h ckcallback.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ - ckevacuation.h ckarrayreductionmgr.h trace.h trace-bluegene.h \ - pathHistory.h PathHistory.decl.h bigsim_ooc.h bigsim_debug.h + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckevacuation.h trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + bigsim_ooc.h bigsim_debug.h bigsim_read.o: bigsim_read.C blue.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1662,15 +1616,14 @@ blue_stub.o: blue_stub.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ccs-builtins.o: ccs-builtins.C converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -1690,16 +1643,16 @@ charmProjections.o: charmProjections.C converse.h conv-config.h \ cklists.h objid.h charm.h converse.h pup.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h qd.h register.h stats.h ../include/TopoManager.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h \ + register.h stats.h ../include/TopoManager.h \ ../include/topomanager_config.h ../include/converse.h trace-common.h ck.o: ck.C ck.h charm++.h charm.h converse.h conv-config.h \ @@ -1712,18 +1665,17 @@ ck.o: ck.C ck.h charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h crc32.h trace-common.h BaseLB.h ckliststring.h \ - CkMarshall.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h crc32.h \ + trace-common.h BaseLB.h ckliststring.h CkMarshall.def.h ckIgetControl.o: ckIgetControl.C charm++.h charm.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -1735,16 +1687,16 @@ ckIgetControl.o: ckIgetControl.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h ckIgetControl.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + ckIgetControl.h ckarray.o: ckarray.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1756,29 +1708,6 @@ ckarray.o: ckarray.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h register.h ck.h qd.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h CkArray.def.h - -ckarrayreductionmgr.o: ckarrayreductionmgr.C charm++.h charm.h converse.h \ - conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ - conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h queueing.h conv-cpm.h \ - conv-cpath.h conv-qd.h conv-random.h conv-lists.h conv-trace.h \ - persistent.h debug-conv.h pup.h middle.h middle-conv.h cklists.h \ - ckbitvector.h ckstream.h init.h ckhashtable.h debug-charm.h \ - debug-conv++.h simd.h ckmessage.h pup.h CkMarshall.decl.h envelope.h \ - charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ - pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ - cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ @@ -1786,10 +1715,9 @@ ckarrayreductionmgr.o: ckarrayreductionmgr.C charm++.h charm.h converse.h \ ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h ck.h qd.h register.h stats.h ../include/TopoManager.h \ - ../include/topomanager_config.h ../include/converse.h \ - CkArrayReductionMgr.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h register.h \ + ck.h qd.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h CkArray.def.h ckbitvector.o: ckbitvector.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1801,15 +1729,14 @@ ckbitvector.o: ckbitvector.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ckcallback.o: ckcallback.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1821,16 +1748,15 @@ ckcallback.o: ckcallback.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h ckcallback-ccs.h \ - CkCallback.decl.h CkCallback.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + ckcallback-ccs.h CkCallback.decl.h CkCallback.def.h ckcausalmlog.o: ckcausalmlog.C charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1842,18 +1768,18 @@ ckcausalmlog.o: ckcausalmlog.C charm.h converse.h conv-config.h \ charm.h converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h \ debug-charm.h ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h ckcausalmlog.h ckobjid.h CentralLB.h BaseLB.h \ - CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h ckcausalmlog.h \ + ckobjid.h CentralLB.h BaseLB.h CentralLB.decl.h CentralLBMsg.h pup_stl.h \ + manager.h ckcheckpoint.o: ckcheckpoint.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1865,24 +1791,22 @@ ckcheckpoint.o: ckcheckpoint.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h CkCheckpoint.decl.h CkCheckpoint.def.h \ - CkCheckpointStatus.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h \ + CkCheckpoint.decl.h CkCheckpoint.def.h CkCheckpointStatus.def.h ckdll.o: ckdll.C converse.h conv-config.h conv-autoconfig.h conv-common.h \ conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h queueing.h \ conv-cpm.h conv-cpath.h conv-qd.h conv-random.h conv-lists.h \ - conv-trace.h persistent.h debug-conv.h ckdll.h ckdll_dlopen.C \ - ckdll_system.C + conv-trace.h persistent.h debug-conv.h ckdll.h ckdll_dlopen.C ckevacuation.o: ckevacuation.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1894,17 +1818,16 @@ ckevacuation.o: ckevacuation.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h ckfutures.o: ckfutures.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1916,17 +1839,16 @@ ckfutures.o: ckfutures.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h CkFutures.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h CkFutures.def.h ckgraph.o: ckgraph.C ckgraph.h BaseLB.h LBDatabase.h lbdb.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -1940,14 +1862,13 @@ ckgraph.o: ckgraph.C ckgraph.h BaseLB.h LBDatabase.h lbdb.h converse.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h ckgraphTemp.o: ckgraphTemp.C ckgraphTemp.h BaseLB.h LBDatabase.h lbdb.h \ converse.h conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -1961,14 +1882,13 @@ ckgraphTemp.o: ckgraphTemp.C ckgraphTemp.h BaseLB.h LBDatabase.h lbdb.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h ckgraph.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h ckgraph.h ckhashtable.o: ckhashtable.C ckhashtable.h pup.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -1996,16 +1916,16 @@ cklocation.o: cklocation.C hilbert.h partitioning_strategies.h charm++.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h register.h ck.h qd.h stats.h ../include/TopoManager.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h register.h \ + ck.h qd.h stats.h ../include/TopoManager.h \ ../include/topomanager_config.h ../include/converse.h CkLocation.def.h ckmemcheckpoint.o: ckmemcheckpoint.C charm++.h charm.h converse.h \ @@ -2018,16 +1938,16 @@ ckmemcheckpoint.o: ckmemcheckpoint.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h ck.h qd.h register.h stats.h ../include/TopoManager.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h qd.h \ + register.h stats.h ../include/TopoManager.h \ ../include/topomanager_config.h ../include/converse.h \ CkMemCheckpoint.def.h @@ -2041,18 +1961,18 @@ ckmessagelogging.o: ckmessagelogging.C charm.h converse.h conv-config.h \ charm.h converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h \ debug-charm.h ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h ckmessagelogging.h ckobjid.h CentralLB.h BaseLB.h \ - CentralLB.decl.h CentralLBMsg.h pup_stl.h manager.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h ckmessagelogging.h \ + ckobjid.h CentralLB.h BaseLB.h CentralLB.decl.h CentralLBMsg.h pup_stl.h \ + manager.h ckmulticast.o: ckmulticast.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -2064,15 +1984,14 @@ ckmulticast.o: ckmulticast.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h register.h \ + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h register.h \ spanningTreeStrategy.h spanningTreeVertex.h treeStrategy_topoUnaware.h \ treeStrategy_nodeAware_minGens.h treeStrategy_nodeAware_minBytes.h \ treeStrategy_3dTorus_minHops.h ../include/TopoManager.h \ @@ -2090,15 +2009,14 @@ ckobjQ.o: ckobjQ.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ckobjid.o: ckobjid.C charm.h converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -2109,16 +2027,16 @@ ckobjid.o: ckobjid.C charm.h converse.h conv-config.h conv-autoconfig.h \ envelope.h charm.h middle.h cklists.h objid.h charm.h converse.h pup.h \ sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h \ objid.h cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h \ - ckobjQ.h ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckobjQ.h ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h qd.h register.h stats.h ../include/TopoManager.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h \ + register.h stats.h ../include/TopoManager.h \ ../include/topomanager_config.h ../include/converse.h ckobjid.h ckreduction.o: ckreduction.C charm++.h charm.h converse.h conv-config.h \ @@ -2131,17 +2049,16 @@ ckreduction.o: ckreduction.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h CkReduction.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h CkReduction.def.h ckset.o: ckset.C elements.h converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -2159,15 +2076,14 @@ cktaskQ.o: cktaskQ.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h cktiming.o: cktiming.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -2179,15 +2095,14 @@ cktiming.o: cktiming.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h cktiming.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h cktiming.h cldb.o: cldb.c queueing.h conv-config.h conv-autoconfig.h conv-common.h \ conv-mach.h conv-mach-opt.h cldb.h converse.h cmiqueue.h pup_c.h \ @@ -2216,20 +2131,22 @@ controlPoints.o: controlPoints.C charm++.h charm.h converse.h \ envelope.h charm.h middle.h cklists.h objid.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h controlPoints.h conv-config.h trace-controlPoints.h \ - trace.h envelope.h register.h trace-common.h LBDatabase.h charm++.h \ - trace-projections.h ckhashtable.h pup.h pathHistory.h cp_effects.h ck.h \ - qd.h register.h stats.h ../include/TopoManager.h \ - ../include/topomanager_config.h ../include/converse.h ckarray.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + controlPoints.h conv-config.h ControlPoints.decl.h charm++.h envelope.h \ + sdag.h charm-api.h LBDatabase.h arrayRedistributor.h pathHistory.h \ + cp_effects.h ck.h qd.h register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h ckarray.h \ + trace-controlPoints.h trace.h register.h trace-common.h \ + trace-projections.h ckhashtable.h pup.h pathHistory.h cp_effects.h \ + ControlPoints.def.h conv-ccs.o: conv-ccs.c converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -2281,16 +2198,16 @@ cp_effects.o: cp_effects.C cp_effects.h charm++.h charm.h converse.h \ envelope.h charm.h middle.h cklists.h objid.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h ck.h qd.h register.h stats.h ../include/TopoManager.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h ck.h qd.h \ + register.h stats.h ../include/TopoManager.h \ ../include/topomanager_config.h ../include/converse.h ckarray.h cpm.o: cpm.c queueing.h conv-config.h conv-autoconfig.h conv-common.h \ @@ -2326,23 +2243,36 @@ custom_partitioner.o: custom_partitioner.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h debug-charm.o: debug-charm.C converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ queueing.h conv-cpm.h conv-cpath.h conv-qd.h conv-random.h conv-lists.h \ conv-trace.h persistent.h debug-conv.h ckhashtable.h pup.h conv-ccs.h \ sockRoutines.h ccs-server.h debug-charm.h debug-conv++.h cklists.h \ - charm.h middle.h middle-conv.h register.h + charm.h middle.h middle-conv.h register.h ck.h charm++.h ckbitvector.h \ + ckstream.h init.h simd.h ckmessage.h pup.h CkMarshall.decl.h envelope.h \ + charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ + pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ + cksection.h ckcallback.h ckobjQ.h ckreduction.h CkReduction.decl.h \ + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h stats.h \ + ../include/TopoManager.h ../include/topomanager_config.h \ + ../include/converse.h debug-conv++.o: debug-conv++.C converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -2365,18 +2295,17 @@ debug-message.o: debug-message.C ck.h charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h sdag.h pup_stl.h conv-config.h \ envelope.h debug-charm.h ckarrayindex.h objid.h cksection.h ckcallback.h \ conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h \ - CkReduction.decl.h CkArrayReductionMgr.decl.h ckmemcheckpoint.h \ - CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ - lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ - LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ - MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ - ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ - CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ - ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h qd.h register.h stats.h ../include/TopoManager.h \ - ../include/topomanager_config.h ../include/converse.h envelope.h \ - queueing.h + CkReduction.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h \ + ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h \ + LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h \ + BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h qd.h register.h stats.h \ + ../include/TopoManager.h ../include/topomanager_config.h \ + ../include/converse.h envelope.h queueing.h edgelist.o: edgelist.c graphdefs.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -2416,16 +2345,15 @@ init.o: init.C ckcheckpoint.h pup.h converse.h conv-config.h \ ckhashtable.h debug-charm.h debug-conv++.h simd.h CkMarshall.decl.h \ envelope.h charm.h middle.h cklists.h objid.h sdag.h pup_stl.h \ conv-config.h envelope.h debug-charm.h ckarrayindex.h cksection.h \ - ckcallback.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckevacuation.h ckarrayreductionmgr.h \ - trace.h conv-trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ - ck.h qd.h register.h stats.h ../include/TopoManager.h \ + ckcallback.h ckobjQ.h ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckevacuation.h trace.h conv-trace.h trace-bluegene.h pathHistory.h \ + PathHistory.decl.h ck.h qd.h register.h stats.h ../include/TopoManager.h \ ../include/topomanager_config.h ../include/converse.h \ CkCheckpoint.decl.h @@ -2446,14 +2374,14 @@ lbdb.o: lbdb.C converse.h conv-config.h conv-autoconfig.h conv-common.h \ pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - conv-trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ - NullLB.decl.h BaseLB.decl.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h conv-trace.h \ + trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ + BaseLB.decl.h lbdbf.o: lbdbf.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -2465,15 +2393,14 @@ lbdbf.o: lbdbf.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h charm-api.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h charm-api.h lz4.o: lz4.c lz4.h @@ -2493,17 +2420,16 @@ main.o: main.C ck.h charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h manager.o: manager.C manager.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ converse.h conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -2517,14 +2443,14 @@ manager.o: manager.C manager.h CentralLB.h BaseLB.h LBDatabase.h lbdb.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h NullLB.decl.h \ - BaseLB.decl.h CentralLB.decl.h CentralLBMsg.h pup_stl.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h \ + cklocrec.h ckmigratable.h ckmulticast.h CkMulticast.decl.h \ + CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h \ + waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ + CkCheckpointStatus.decl.h ckevacuation.h trace.h trace-bluegene.h \ + pathHistory.h PathHistory.decl.h NullLB.decl.h BaseLB.decl.h \ + CentralLB.decl.h CentralLBMsg.h pup_stl.h mem-arena.o: mem-arena.c converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -2558,16 +2484,15 @@ modifyScheduler.o: modifyScheduler.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h mpi-interoperate.o: mpi-interoperate.C mpi-interoperate.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -2579,16 +2504,16 @@ mpi-interoperate.o: mpi-interoperate.C mpi-interoperate.h converse.h \ envelope.h charm.h middle.h cklists.h objid.h charm.h converse.h pup.h \ sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h \ objid.h cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h \ - ckobjQ.h ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckobjQ.h ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h qd.h register.h stats.h ../include/TopoManager.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h \ + register.h stats.h ../include/TopoManager.h \ ../include/topomanager_config.h ../include/converse.h mpi-mainmodule.o: mpi-mainmodule.C mpi_main.decl.h charm++.h charm.h \ @@ -2601,18 +2526,17 @@ mpi-mainmodule.o: mpi-mainmodule.C mpi_main.decl.h charm++.h charm.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h mpi-interoperate.h ck.h qd.h register.h stats.h \ - ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h mpi_main.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + mpi-interoperate.h ck.h qd.h register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h mpi_main.def.h msgalloc.o: msgalloc.C ck.h charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -2624,17 +2548,16 @@ msgalloc.o: msgalloc.C ck.h charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h msgmgr.o: msgmgr.c converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -2662,17 +2585,17 @@ pathHistory.o: pathHistory.C charm++.h charm.h converse.h conv-config.h \ objid.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h PathHistory.decl.h \ - LBDatabase.h pathHistory.h register.h trace-projections.h trace.h \ - trace-common.h ckhashtable.h pup.h PathHistory.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + PathHistory.decl.h LBDatabase.h pathHistory.h register.h \ + trace-projections.h trace.h trace-common.h ckhashtable.h pup.h \ + PathHistory.def.h persist-comm.o: persist-comm.c converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -2689,15 +2612,14 @@ picsautoperf.o: picsautoperf.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h \ + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ ../include/TopoManager.h ../include/topomanager_config.h \ ../include/converse.h picsdefs.h picsdefscpp.h TraceAutoPerf.decl.h \ picsautoperf.h picstreenode.h picsdecisiontree.h picsautoperfAPI.h \ @@ -2715,17 +2637,16 @@ picsautoperfAPI.o: picsautoperfAPI.C picsdefs.h picsdefscpp.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h picsdecisiontree.h \ - picsautoperfAPI.h register.h trace-common.h TraceAutoPerf.decl.h \ - trace-projections.h picsautoperfAPIC.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + picsdecisiontree.h picsautoperfAPI.h register.h trace-common.h \ + TraceAutoPerf.decl.h trace-projections.h picsautoperfAPIC.h picsdecisiontree.o: picsdecisiontree.C picsdefs.h picsdecisiontree.h \ picstreenode.h charm++.h charm.h converse.h conv-config.h \ @@ -2738,15 +2659,14 @@ picsdecisiontree.o: picsdecisiontree.C picsdefs.h picsdecisiontree.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h picsdefscpp.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h picsdefscpp.h picstreenode.o: picstreenode.C picstreenode.h charm++.h charm.h \ converse.h conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -2758,16 +2678,16 @@ picstreenode.o: picstreenode.C picstreenode.h charm++.h charm.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h picsdefs.h picsdefscpp.h register.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h picsdefs.h \ + picsdefscpp.h register.h pup_c.o: pup_c.C pup.h converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -2818,17 +2738,16 @@ qd.o: qd.C ck.h charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h queueing.o: queueing.C queueing.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h converse.h conv-config.h \ @@ -2856,17 +2775,16 @@ register.o: register.C ck.h charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h register.h \ - stats.h ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h qd.h \ + register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h sdag.o: sdag.C sdag.h pup.h converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -2895,15 +2813,14 @@ tempo.o: tempo.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h tempo.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h tempo.def.h tm_bucket.o: tm_bucket.c tm_tree.h tm_bucket.h tm_timings.h @@ -2931,18 +2848,17 @@ trace-bluegene.o: trace-bluegene.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h trace-common.h blue.h blue-conv.h blue_impl.h \ - ckliststring.h blue_types.h bigsim_timing.h bigsim_logs.h blue_defs.h \ - bigsim_network.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h trace-common.h \ + blue.h blue-conv.h blue_impl.h ckliststring.h blue_types.h \ + bigsim_timing.h bigsim_logs.h blue_defs.h bigsim_network.h trace-common.o: trace-common.C charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -2964,18 +2880,17 @@ trace-controlPoints.o: trace-controlPoints.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h trace-controlPoints.h register.h trace-common.h \ - trace-controlPointsBOC.h TraceControlPoints.decl.h \ - TraceControlPoints.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + trace-controlPoints.h register.h trace-common.h trace-controlPointsBOC.h \ + TraceControlPoints.decl.h TraceControlPoints.def.h trace-converse.o: trace-converse.c conv-trace.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -2992,16 +2907,15 @@ trace-counter.o: trace-counter.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h trace-memory.o: trace-memory.C trace-memory.h charm++.h charm.h \ converse.h conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -3013,16 +2927,15 @@ trace-memory.o: trace-memory.C trace-memory.h charm++.h charm.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h trace-common.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h trace-common.h trace-perf.o: trace-perf.C trace-perf.h charm++.h charm.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -3034,20 +2947,19 @@ trace-perf.o: trace-perf.C trace-perf.h charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h ../include/TopoManager.h \ - ../include/topomanager_config.h ../include/converse.h trace-common.h \ - picsdefs.h picsdefscpp.h picsautoperf.h picstreenode.h \ - picsdecisiontree.h picsautoperfAPI.h register.h TraceAutoPerf.decl.h \ - trace-projections.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + ../include/TopoManager.h ../include/topomanager_config.h \ + ../include/converse.h trace-common.h picsdefs.h picsdefscpp.h \ + picsautoperf.h picstreenode.h picsdecisiontree.h picsautoperfAPI.h \ + register.h TraceAutoPerf.decl.h trace-projections.h trace-projections.o: trace-projections.C charm++.h charm.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -3059,20 +2971,19 @@ trace-projections.o: trace-projections.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h trace-projections.h trace-common.h \ - trace-projectionsBOC.h register.h ckcallback-ccs.h CkCallback.decl.h \ - TraceProjections.decl.h ../include/TopoManager.h \ - ../include/topomanager_config.h ../include/converse.h \ - TraceProjections.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + trace-projections.h trace-common.h trace-projectionsBOC.h register.h \ + ckcallback-ccs.h CkCallback.decl.h TraceProjections.decl.h \ + ../include/TopoManager.h ../include/topomanager_config.h \ + ../include/converse.h TraceProjections.def.h trace-projector.o: trace-projector.C charm++.h charm.h converse.h \ conv-config.h conv-autoconfig.h conv-common.h conv-mach.h \ @@ -3084,21 +2995,20 @@ trace-projector.o: trace-projector.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h trace-projector.h ck.h qd.h register.h stats.h \ - ../include/TopoManager.h ../include/topomanager_config.h \ - ../include/converse.h allEvents.h charmEvents.h charmProjections.h \ - traceCoreAPI.h converseEvents.h converseProjections.h machineEvents.h \ - machineProjections.h traceCore.h threadEvents.h traceCoreCommon.h \ - trace-common.h trace-projections.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + trace-projector.h ck.h qd.h register.h stats.h ../include/TopoManager.h \ + ../include/topomanager_config.h ../include/converse.h allEvents.h \ + charmEvents.h charmProjections.h traceCoreAPI.h converseEvents.h \ + converseProjections.h machineEvents.h machineProjections.h traceCore.h \ + threadEvents.h traceCoreCommon.h trace-common.h trace-projections.h trace-simple.o: trace-simple.C charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -3110,15 +3020,14 @@ trace-simple.o: trace-simple.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h trace-simple.h \ + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h trace-simple.h \ register.h trace-common.h trace-simpleBOC.h TraceSimple.decl.h \ TraceSimple.def.h @@ -3132,18 +3041,18 @@ trace-summary.o: trace-summary.C charm++.h charm.h converse.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h trace-summary.h register.h trace-common.h \ - trace-summaryBOC.h ckcallback-ccs.h CkCallback.decl.h \ - TraceSummary.decl.h TraceSummary.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h \ + trace-summary.h register.h trace-common.h trace-summaryBOC.h \ + ckcallback-ccs.h CkCallback.decl.h TraceSummary.decl.h \ + TraceSummary.def.h trace-utilization.o: trace-utilization.C trace-utilization.h charm++.h \ charm.h converse.h conv-config.h conv-autoconfig.h conv-common.h \ @@ -3155,17 +3064,17 @@ trace-utilization.o: trace-utilization.C trace-utilization.h charm++.h \ charm.h middle.h cklists.h objid.h charm.h converse.h pup.h sdag.h \ pup_stl.h conv-config.h envelope.h debug-charm.h ckarrayindex.h objid.h \ cksection.h ckcallback.h conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h \ - ckreduction.h CkReduction.decl.h CkArrayReductionMgr.decl.h \ - ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ - cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ - LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ - MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ - ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ - ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckreduction.h CkReduction.decl.h ckmemcheckpoint.h \ + CkMemCheckpoint.decl.h readonly.h ckarray.h cklocation.h LBDatabase.h \ + lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h \ + LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h MetaBalancer.h \ + MetaBalancer.decl.h CkLocation.decl.h cklocrec.h ckmigratable.h \ + ckmulticast.h CkMulticast.decl.h CkArray.decl.h ckfutures.h \ + CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h pathHistory.h \ - PathHistory.decl.h register.h trace-common.h ckcallback-ccs.h \ - CkCallback.decl.h TraceUtilization.decl.h TraceUtilization.def.h + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h register.h \ + trace-common.h ckcallback-ccs.h CkCallback.decl.h \ + TraceUtilization.decl.h TraceUtilization.def.h traceCore.o: traceCore.C converse.h conv-config.h conv-autoconfig.h \ conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h pup_c.h lrtslock.h \ @@ -3190,15 +3099,14 @@ tracec.o: tracec.C charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h trace-common.h \ + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h trace-common.h \ tracec.h tracef.o: tracef.C charm++.h charm.h converse.h conv-config.h \ @@ -3211,15 +3119,14 @@ tracef.o: tracef.C charm++.h charm.h converse.h conv-config.h \ objid.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h waitqd.h waitqd.decl.h ckcheckpoint.h ckcallback.h \ - CkCheckpointStatus.decl.h ckevacuation.h ckarrayreductionmgr.h trace.h \ - trace-bluegene.h pathHistory.h PathHistory.decl.h charm-api.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ + ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h \ + trace.h trace-bluegene.h pathHistory.h PathHistory.decl.h charm-api.h waitqd.o: waitqd.C waitqd.h charm++.h charm.h converse.h conv-config.h \ conv-autoconfig.h conv-common.h conv-mach.h conv-mach-opt.h cmiqueue.h \ @@ -3231,13 +3138,13 @@ waitqd.o: waitqd.C waitqd.h charm++.h charm.h converse.h conv-config.h \ converse.h pup.h sdag.h pup_stl.h conv-config.h envelope.h debug-charm.h \ ckarrayindex.h objid.h cksection.h ckcallback.h conv-ccs.h \ sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h CkReduction.decl.h \ - CkArrayReductionMgr.decl.h ckmemcheckpoint.h CkMemCheckpoint.decl.h \ - readonly.h ckarray.h cklocation.h LBDatabase.h lbdb.h LBDBManager.h \ - LBObj.h LBOM.h LBComm.h LBMachineUtil.h lbdb++.h LBDatabase.decl.h \ - NullLB.decl.h BaseLB.decl.h MetaBalancer.h MetaBalancer.decl.h \ - CkLocation.decl.h cklocrec.h ckmigratable.h ckmulticast.h \ - CkMulticast.decl.h CkArray.decl.h ckfutures.h CkFutures.decl.h tempo.h \ - tempo.decl.h ckcheckpoint.h ckcallback.h CkCheckpointStatus.decl.h \ - ckevacuation.h ckarrayreductionmgr.h trace.h trace-bluegene.h \ - pathHistory.h PathHistory.decl.h waitqd.decl.h waitqd.def.h + ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h \ + cklocation.h LBDatabase.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ + LBMachineUtil.h lbdb++.h LBDatabase.decl.h NullLB.decl.h BaseLB.decl.h \ + MetaBalancer.h MetaBalancer.decl.h CkLocation.decl.h cklocrec.h \ + ckmigratable.h ckmulticast.h CkMulticast.decl.h CkArray.decl.h \ + ckfutures.h CkFutures.decl.h tempo.h tempo.decl.h ckcheckpoint.h \ + ckcallback.h CkCheckpointStatus.decl.h ckevacuation.h trace.h \ + trace-bluegene.h pathHistory.h PathHistory.decl.h waitqd.decl.h \ + waitqd.def.h diff --git a/src/scripts/Makefile b/src/scripts/Makefile index 6f6df70119..023923fc6f 100644 --- a/src/scripts/Makefile +++ b/src/scripts/Makefile @@ -227,7 +227,7 @@ UTILHEADERS=pup.h pupf.h pup_c.h pup_stl.h pup_mpi.h pup_toNetwork.h pup_toNetwo CKHEADERS=ck.h ckstream.h objid.h envelope.h init.h qd.h charm.h charm++.h \ ckfutures.h ckIgetControl.h cktiming.h debug-charm.h\ ckcallback.h CkCallback.decl.h ckcallback-ccs.h \ - ckarrayreductionmgr.h cksection.h ckmessage.h cklocrec.h ckmigratable.h \ + cksection.h ckmessage.h cklocrec.h ckmigratable.h \ ckarrayindex.h ckarray.h cklocation.h ckmulticast.h ckreduction.h \ ckcheckpoint.h ckmemcheckpoint.h ckevacuation.h\ ckmessagelogging.h ckcausalmlog.h ckobjid.h\ @@ -242,7 +242,7 @@ CKHEADERS=ck.h ckstream.h objid.h envelope.h init.h qd.h charm.h charm++.h \ NeighborLBMsg.h \ BlueGene.h middle.h middle-conv.h middle-blue.h \ CkMarshall.decl.h CkArray.decl.h CkLocation.decl.h CkMulticast.decl.h \ - CkReduction.decl.h CkArrayReductionMgr.decl.h\ + CkReduction.decl.h \ tempo.decl.h waitqd.decl.h \ CkFutures.decl.h CkCheckpoint.decl.h CkCheckpointStatus.decl.h CkMemCheckpoint.decl.h \ LBDatabase.decl.h MetaBalancer.decl.h CentralLB.decl.h NullLB.decl.h \ @@ -607,7 +607,7 @@ CK_LIBS_CORE=$(L)/libck.a LIBCK_CORE=trace-common.o tracec.o tracef.o init.o register.o qd.o ck.o cktaskQ.o \ msgalloc.o ckfutures.o ckIgetControl.o debug-message.o debug-charm.o ckcallback.o \ - cklocation.o ckmulticast.o ckarray.o ckreduction.o ckarrayreductionmgr.o \ + cklocation.o ckmulticast.o ckarray.o ckreduction.o \ tempo.o waitqd.o LBDatabase.o MetaBalancer.o lbdb.o lbdbf.o ckobjQ.o \ LBAgent.o LBProfit.o ckcheckpoint.o ckmemcheckpoint.o ckevacuation.o ckmessagelogging.o ckcausalmlog.o ckobjid.o\ LBDBManager.o LBComm.o LBObj.o LBMachineUtil.o CentralPredictor.o \ @@ -676,14 +676,14 @@ libtrace-Tau.o: trace-Tau.C charm++.h charm.h converse.h conv-config.h \ middle.h middle-conv.h cklists.h ckbitvector.h ckstream.h init.h \ ckhashtable.h debug-charm.h CkMarshall.decl.h cksection.h ckcallback.h \ conv-ccs.h sockRoutines.h ccs-server.h ckobjQ.h ckreduction.h \ - CkReduction.decl.h CkArrayReductionMgr.decl.h \ + CkReduction.decl.h \ ckmemcheckpoint.h CkMemCheckpoint.decl.h readonly.h ckarray.h cklocrec.h ckmigratable.h \ cklocation.h ckmulticast.h LBDatabase.h MetaBalancer.h lbdb.h LBDBManager.h LBObj.h LBOM.h LBComm.h \ LBMachineUtil.h lbdb++.h LBDatabase.decl.h MetaBalancer.decl.h NullLB.decl.h BaseLB.decl.h \ CkLocation.decl.h CkMulticast.decl.h CkArray.decl.h objid.h envelope.h envelope-path.h XArraySectionReducer.h CkFutures.decl.h \ tempo.h tempo.decl.h waitqd.h waitqd.decl.h \ sdag.h ckcheckpoint.h CkCheckpoint.decl.h ckevacuation.h \ - ckarrayreductionmgr.h trace.h trace-bluegene.h trace-simple.h \ + trace.h trace-bluegene.h trace-simple.h \ register.h trace-common.h trace-simpleBOC.h TraceSimple.decl.h \ TraceSimple.def.h $(CHARMC) -c -I. $(TAU_INCLUDE) $(TAU_DEFS) trace-Tau.C -o libtrace-Tau.o -- 2.11.4.GIT