PPL Logo

ck-core/ckcausalmlog.h File Reference

Go to the source code of this file.

Data Structures

struct  Determinant
 Struct to store the determinant of a particular message. More...
struct  RemoveDeterminantsHeader
 Struct for the header of the removeDeterminants handler. More...
struct  StoreDeterminantsHeader
 Struct for the header of the storeDeterminants handler. More...
class  Ticket
 Structure for a ticket assigned to a particular message. More...
class  SNToTicket
 Class that maps SN (sequence numbers) to TN (ticket numbers) for a particular object. More...
class  ChareMlogData
 This file includes the definition of the class for storing the meta data associdated with the message logging protocol. More...
class  MlogEntry
 Entry in a message log. More...
class  StoredCheckpoint
class  RestoredLocalMap
 Class for storing metadata of local messages. More...
struct  TicketRequest
struct  TicketReply
struct  BufferedLocalLogHeader
struct  CheckPointDataMsg
struct  DistributeObjectMsg
struct  TProcessedLog
struct  RestartRequest
 Struct to request a particular action during restart. More...
struct  RestartProcessorData
struct  ResendRequest
struct  ReceivedTNData
struct  ReceivedDetData
struct  ResendData
struct  MigrationRecord
struct  MigrationNotice
struct  MigrationNoticeAck
struct  RetainedMigratedObject
struct  VerifyAckMsg
struct  CheckpointBarrierMsg
struct  CurrentLocationMsg
struct  LBStepMsg
struct  DummyMigrationMsg

Typedefs

typedef CkHashtableT
< CkHashtableAdaptorT< CkObjID >
, std::vector< Determinant > * > 
CkDeterminantHashtableT
 Typedef for the hashtable type that maps object IDs to determinants.
typedef BufferedLocalLogHeader BufferedTicketRequestHeader
typedef CheckPointDataMsg CheckPointAck
typedef RestartRequest CkPingMsg
typedef RestartRequest CheckpointRequest
typedef ResendRequest RemoveLogRequest
typedef void(* MlogFn )(void *, ChareMlogData *)

Functions

 CpvExtern (Chare *, _currentObj)
 CpvExtern (int, _numImmigrantRecObjs)
 PUPbytes (Ticket) class MlogEntry
 CpvExtern (CkQ< TicketRequest * > *, _delayedTicketRequests)
 CpvExtern (CkQ< MlogEntry * > *, _delayedLocalTicketRequests)
 CpvExtern (char **, _bufferedTicketRequests)
void _messageLoggingInit ()
 Initialize message logging data structures and register handlers.
void sendGroupMsg (envelope *env, int destPE, int _infoIdx)
 Sends a group message that might be a broadcast.
void sendArrayMsg (envelope *env, int destPE, int _infoIdx)
 Sends a message to an array element.
void sendChareMsg (envelope *env, int destPE, int _infoIdx, const CkChareID *pCid)
 Sends a message to a singleton chare.
void sendNodeGroupMsg (envelope *env, int destNode, int _infoIdx)
 Sends a nodegroup message that might be a broadcast.
void sendCommonMsg (CkObjID &recver, envelope *env, int destPE, int _infoIdx)
 A method to generate the actual ticket requests for groups, nodegroups or arrays.
void sendMsg (CkObjID &sender, CkObjID &recver, int destPE, MlogEntry *entry, MCount SN, MCount TN, int resend)
 Method that does the actual send by creating a ticket request filling it up and sending it.
void sendLocalMsg (envelope *env, int _infoIdx)
 Function to send a local message.
void _ticketRequestHandler (TicketRequest *)
 If there are any delayed requests, process them first before processing this request.
void _ticketHandler (TicketReply *)
void _pingHandler (CkPingMsg *msg)
void _bufferedLocalMessageCopyHandler (BufferedLocalLogHeader *recvdHeader, int freeHeader=1)
void _bufferedLocalMessageAckHandler (BufferedLocalLogHeader *recvdHeader)
void _bufferedTicketRequestHandler (BufferedTicketRequestHeader *recvdHeader)
void _bufferedTicketHandler (BufferedTicketRequestHeader *recvdHeader)
void _storeDeterminantsHandler (char *buffer)
 Stores the determinants coming from other processor.
void _removeDeterminantsHandler (char *buffer)
 Removes the determinants after a particular index in the _localDets array.
void _skipCldEnqueue (int pe, envelope *env, int infoFn)
void _noCldNodeEnqueue (int node, envelope *env)
void generalCldEnqueue (int destPE, envelope *env, int _infoIdx)
void retryTicketRequest (void *_ticketRequest, double curWallTime)
int preProcessReceivedMessage (envelope *env, Chare **objPointer, MlogEntry **localLogEntry)
void postProcessReceivedMessage (Chare *obj, CkObjID &sender, MCount SN, MlogEntry *entry)
 Updates a few variables once a message has been processed.
 CpvExtern (StoredCheckpoint *, _storedCheckpointData)
void checkpointAlarm (void *_dummy, double curWallTime)
void startMlogCheckpoint (void *_dummy, double curWallTime)
 Starts the checkpoint phase after migration.
void pupArrayElementsSkip (PUP::er &p, bool create, MigrationRecord *listToSkip, int listSize=0)
 Pups all the array elements in this processor.
void _checkpointRequestHandler (CheckpointRequest *request)
void _storeCheckpointHandler (char *msg)
void _checkpointAckHandler (CheckPointAck *ackMsg)
void _removeProcessedLogHandler (char *requestMsg)
 Removes messages in the log according to the received ticket numbers.
void garbageCollectMlog ()
 Garbage collects the message log and other data structures.
void CkMlogRestart (const char *dummy, CkArgMsg *dummyMsg)
 Function for restarting the crashed processor.
void CkMlogRestartDouble (void *, double)
void processReceivedTN (Chare *obj, int vecsize, MCount *listTNs)
 Processes the received list of tickets from a particular PE.
void processReceivedDet (Chare *obj, int vecsize, Determinant *listDets)
 Processes the received list of determinants from a particular PE.
void initializeRestart (void *data, ChareMlogData *mlogData)
 Initializes variables and flags for restarting procedure.
void distributeRestartedObjects ()
 Distributes objects to accelerate recovery after a failure.
void sendDummyMigration (int restartPE, CkGroupID lbID, CkGroupID locMgrID, CkArrayIndexMax &idx, int locationPE)
 this method is used to send messages to a restarted processor to tell it that a particular expected object is not going to get to it
void CkMlogRestartLocal ()
void _getCheckpointHandler (RestartRequest *restartMsg)
 Gets the stored checkpoint for its buddy processor.
void _recvCheckpointHandler (char *_restartData)
 Receives the checkpoint data from its buddy, restores the state of all the objects and asks everyone else to update its home.
void _resendMessagesHandler (char *msg)
 Resends messages since last checkpoint to the list of objects included in the request.
void _sendDetsHandler (char *msg)
 Send all remote determinants to a particular failed PE.
void _sendDetsReplyHandler (char *msg)
 Receives determinants stored on remote nodes.
void _receivedTNDataHandler (ReceivedTNData *msg)
 Receives a list of TNs coming from the home PE of a migrated object (parallel restart).
void _receivedDetDataHandler (ReceivedDetData *msg)
 Receives a list of determinants coming from the home PE of a migrated object (parallel restart).
void _distributedLocationHandler (char *receivedMsg)
 Handler to update information about an object just received.
void _sendBackLocationHandler (char *receivedMsg)
 Handler to receive back a location.
void _updateHomeRequestHandler (RestartRequest *updateRequest)
 Updates the homePe for all chares in this processor.
void _updateHomeAckHandler (RestartRequest *updateHomeAck)
 Receives the updateHome ACKs from all other processors.
void _verifyAckRequestHandler (VerifyAckMsg *verifyRequest)
void _verifyAckHandler (VerifyAckMsg *verifyReply)
void _dummyMigrationHandler (DummyMigrationMsg *msg)
 this handler is used to process a dummy migration msg.
void _restartHandler (RestartRequest *restartMsg)
 Function to restart this processor.
void _getRestartCheckpointHandler (RestartRequest *restartMsg)
 Gets the stored checkpoint but calls another function in the sender.
void _recvRestartCheckpointHandler (char *_restartData)
 Receives the checkpoint coming from its buddy.
void startLoadBalancingMlog (void(*fnPtr)(void *), void *_centralLb)
 Load Balancing.
void finishedCheckpointLoadBalancing ()
void sendMlogLocation (int targetPE, envelope *env)
void resumeFromSyncRestart (void *data, ChareMlogData *mlogData)
void restoreParallelRecovery (void(*fnPtr)(void *), void *_centralLb)
 Restores objects after parallel recovery, either by sending back the immigrant objects or by waiting for all emigrant objects to be back.
void _receiveMlogLocationHandler (void *buf)
void _receiveMigrationNoticeHandler (MigrationNotice *msg)
void _receiveMigrationNoticeAckHandler (MigrationNoticeAck *msg)
void _getGlobalStepHandler (LBStepMsg *msg)
void _recvGlobalStepHandler (LBStepMsg *msg)
 Receives the global step handler from PE 0.
void _checkpointBarrierHandler (CheckpointBarrierMsg *msg)
 Processor 0 receives a contribution from every other processor after checkpoint.
void _checkpointBarrierAckHandler (CheckpointBarrierMsg *msg)
int getCheckPointPE ()
 Getting the pe number of the current processor's buddy.
int getReverseCheckPointPE ()
bool isSameDet (Determinant *first, Determinant *second)
void forAllCharesDo (MlogFn fnPointer, void *data)
 Map function pointed by fnPointer over all the chares living in this processor.
envelopecopyEnvelope (envelope *env)
void _initDone (void)
 This function (not a handler) is called once and only once per processor.
void _resetNodeBocInitVec (void)
void informLocationHome (CkGroupID mgrID, CkArrayIndexMax idx, int homePE, int currentPE)
 method that informs an array elements home processor of its current location It is a converse method to bypass the charm++ message logging framework
void _receiveLocationHandler (CurrentLocationMsg *data)
void CmiDeliverRemoteMsgHandlerRange (int lowerHandler, int higherHandler)

Variables

char objString [100]
int _maxBufferedTicketRequests
int _checkpointRequestHandlerIdx
int _storeCheckpointHandlerIdx
int _checkpointAckHandlerIdx
int _removeProcessedLogHandlerIdx
int _getCheckpointHandlerIdx
int _recvCheckpointHandlerIdx
int _resendMessagesHandlerIdx
int _sendDetsHandlerIdx
int _sendDetsReplyHandlerIdx
int _receivedTNDataHandlerIdx
int _receivedDetDataHandlerIdx
int _distributedLocationHandlerIdx
int _updateHomeRequestHandlerIdx
int _updateHomeAckHandlerIdx
int _verifyAckRequestHandlerIdx
int _verifyAckHandlerIdx
int _dummyMigrationHandlerIdx
int onGoingLoadBalancing
 For testing on clusters we might carry out restarts on a porcessor without actually starting it 1 -> false restart 0 -> restart after an actual crash.
void * centralLb
void(* resumeLbFnPtr )(void *)
int _receiveMlogLocationHandlerIdx
int _receiveMigrationNoticeHandlerIdx
int _receiveMigrationNoticeAckHandlerIdx
int _getGlobalStepHandlerIdx
int _recvGlobalStepHandlerIdx
int _checkpointBarrierHandlerIdx
int _checkpointBarrierAckHandlerIdx
std::vector< MigrationRecordmigratedNoticeList
std::vector
< RetainedMigratedObject * > 
retainedObjectList
int _receiveLocationHandlerIdx


Typedef Documentation

Typedef for the hashtable type that maps object IDs to determinants.

Definition at line 48 of file ckcausalmlog.h.

Definition at line 346 of file ckcausalmlog.h.

Definition at line 366 of file ckcausalmlog.h.

Definition at line 382 of file ckcausalmlog.h.

Definition at line 383 of file ckcausalmlog.h.

Definition at line 403 of file ckcausalmlog.h.

typedef void(* MlogFn)(void *, ChareMlogData *)

Definition at line 499 of file ckcausalmlog.h.


Function Documentation

CpvExtern ( Chare ,
_currentObj   
)

CpvExtern ( int  ,
_numImmigrantRecObjs   
)

PUPbytes ( Ticket   ) 

CpvExtern ( CkQ< TicketRequest * > *  ,
_delayedTicketRequests   
)

CpvExtern ( CkQ< MlogEntry * > *  ,
_delayedLocalTicketRequests   
)

CpvExtern ( char **  ,
_bufferedTicketRequests   
)

void _messageLoggingInit (  ) 

Initialize message logging data structures and register handlers.

Definition at line 277 of file ckcausalmlog.C.

void sendGroupMsg ( envelope env,
int  destPE,
int  _infoIdx 
)

Sends a group message that might be a broadcast.

Definition at line 628 of file ckcausalmlog.C.

void sendArrayMsg ( envelope env,
int  destPE,
int  _infoIdx 
)

Sends a message to an array element.

Definition at line 693 of file ckcausalmlog.C.

void sendChareMsg ( envelope env,
int  destPE,
int  _infoIdx,
const CkChareID pCid 
)

Sends a message to a singleton chare.

Definition at line 715 of file ckcausalmlog.C.

void sendNodeGroupMsg ( envelope env,
int  destNode,
int  _infoIdx 
)

Sends a nodegroup message that might be a broadcast.

Definition at line 661 of file ckcausalmlog.C.

void sendCommonMsg ( CkObjID recver,
envelope env,
int  destPE,
int  _infoIdx 
)

A method to generate the actual ticket requests for groups, nodegroups or arrays.

Definition at line 736 of file ckcausalmlog.C.

void sendMsg ( CkObjID sender,
CkObjID recver,
int  destPE,
MlogEntry entry,
MCount  SN,
MCount  TN,
int  resend 
)

void sendLocalMsg ( envelope env,
int  _infoIdx 
)

Function to send a local message.

It first gets a ticket and then enqueues the message. If we are recovering, then the message is enqueued in a delay queue.

Definition at line 937 of file ckcausalmlog.C.

void _ticketRequestHandler ( TicketRequest  )  [inline]

If there are any delayed requests, process them first before processing this request.

Definition at line 1097 of file ckcausalmlog.C.

References Converse::CkMyPe(), and CmiFree().

Here is the call graph for this function:

void _ticketHandler ( TicketReply  ) 

void _pingHandler ( CkPingMsg msg  ) 

Definition at line 1343 of file ckcausalmlog.C.

void _bufferedLocalMessageCopyHandler ( BufferedLocalLogHeader recvdHeader,
int  freeHeader = 1 
)

void _bufferedLocalMessageAckHandler ( BufferedLocalLogHeader recvdHeader  ) 

void _bufferedTicketRequestHandler ( BufferedTicketRequestHeader recvdHeader  ) 

void _bufferedTicketHandler ( BufferedTicketRequestHeader recvdHeader  ) 

void _storeDeterminantsHandler ( char *  buffer  ) 

void _removeDeterminantsHandler ( char *  buffer  ) 

Removes the determinants after a particular index in the _localDets array.

Definition at line 1006 of file ckcausalmlog.C.

References _indexBufferedDets, _numBufferedDets, _phaseBufferedDets, CmiFree(), RemoveDeterminantsHeader::index, index, and RemoveDeterminantsHeader::phase.

Referenced by _messageLoggingInit().

Here is the call graph for this function:

Here is the caller graph for this function:

void _skipCldEnqueue ( int  pe,
envelope env,
int  infoFn 
)

Definition at line 1425 of file ck.C.

void _noCldNodeEnqueue ( int  node,
envelope env 
)

Definition at line 1556 of file ck.C.

void generalCldEnqueue ( int  destPE,
envelope env,
int  _infoIdx 
)

Definition at line 1322 of file ckcausalmlog.C.

void retryTicketRequest ( void *  _ticketRequest,
double  curWallTime 
)

int preProcessReceivedMessage ( envelope env,
Chare **  objPointer,
MlogEntry **  localLogEntry 
)

Definition at line 1181 of file ckcausalmlog.C.

void postProcessReceivedMessage ( Chare obj,
CkObjID sender,
MCount  SN,
MlogEntry entry 
)

Updates a few variables once a message has been processed.

Definition at line 1302 of file ckcausalmlog.C.

CpvExtern ( StoredCheckpoint ,
_storedCheckpointData   
)

void checkpointAlarm ( void *  _dummy,
double  curWallTime 
)

Definition at line 1358 of file ckcausalmlog.C.

void startMlogCheckpoint ( void *  _dummy,
double  curWallTime 
)

Starts the checkpoint phase after migration.

Definition at line 1383 of file ckcausalmlog.C.

void pupArrayElementsSkip ( PUP::er p,
bool  create,
MigrationRecord listToSkip,
int  listSize = 0 
)

Pups all the array elements in this processor.

Definition at line 1498 of file ckcausalmlog.C.

void _checkpointRequestHandler ( CheckpointRequest request  ) 

Definition at line 1376 of file ckcausalmlog.C.

void _storeCheckpointHandler ( char *  msg  ) 

Definition at line 1574 of file ckcausalmlog.C.

void _checkpointAckHandler ( CheckPointAck ackMsg  ) 

Definition at line 1671 of file ckcausalmlog.C.

void _removeProcessedLogHandler ( char *  requestMsg  ) 

Removes messages in the log according to the received ticket numbers.

Definition at line 1783 of file ckcausalmlog.C.

void garbageCollectMlog (  ) 

Garbage collects the message log and other data structures.

In case of synchronized checkpoint, we use an optimization to avoid causal message logging protocol to communicate all determinants to the rest of the processors.

Definition at line 3580 of file ckcausalmlog.C.

void CkMlogRestart ( const char *  dummy,
CkArgMsg dummyMsg 
)

Function for restarting the crashed processor.

It sets the restart flag and contacts the buddy processor to get the latest checkpoint.

Definition at line 1847 of file ckcausalmlog.C.

void CkMlogRestartDouble ( void *  ,
double   
)

Definition at line 2063 of file ckcausalmlog.C.

void processReceivedTN ( Chare obj,
int  vecsize,
MCount *  listTNs 
)

void processReceivedDet ( Chare obj,
int  vecsize,
Determinant listDets 
)

Processes the received list of determinants from a particular PE.

Definition at line 2864 of file ckcausalmlog.C.

References Converse::CkMyPe(), CmiMemoryCheck(), Chare::mlogData, printDet(), Determinant::sender, Determinant::SN, Determinant::TN, and ChareMlogData::verifyTicket().

Referenced by _receivedDetDataHandler(), and _sendDetsReplyHandler().

Here is the call graph for this function:

Here is the caller graph for this function:

void initializeRestart ( void *  data,
ChareMlogData mlogData 
)

Initializes variables and flags for restarting procedure.

Definition at line 2355 of file ckcausalmlog.C.

void distributeRestartedObjects (  ) 

Distributes objects to accelerate recovery after a failure.

Definition at line 3075 of file ckcausalmlog.C.

void sendDummyMigration ( int  restartPE,
CkGroupID  lbID,
CkGroupID  locMgrID,
CkArrayIndexMax idx,
int  locationPE 
)

this method is used to send messages to a restarted processor to tell it that a particular expected object is not going to get to it

Definition at line 3168 of file ckcausalmlog.C.

void CkMlogRestartLocal (  ) 

Definition at line 2068 of file ckcausalmlog.C.

void _getCheckpointHandler ( RestartRequest restartMsg  ) 

Gets the stored checkpoint for its buddy processor.

Definition at line 2075 of file ckcausalmlog.C.

void _recvCheckpointHandler ( char *  _restartData  ) 

Receives the checkpoint data from its buddy, restores the state of all the objects and asks everyone else to update its home.

Definition at line 2234 of file ckcausalmlog.C.

void _resendMessagesHandler ( char *  msg  ) 

Resends messages since last checkpoint to the list of objects included in the request.

It also sends stored remote determinants to the particular failed PE.

Definition at line 2663 of file ckcausalmlog.C.

void _sendDetsHandler ( char *  msg  ) 

Send all remote determinants to a particular failed PE.

It only sends determinants to those objects on the list.

Definition at line 2557 of file ckcausalmlog.C.

void _sendDetsReplyHandler ( char *  msg  ) 

Receives determinants stored on remote nodes.

Message format: |Header|ObjID list|TN list|Determinant list| TN list = |number of TNs|list of TNs|...|

Definition at line 2719 of file ckcausalmlog.C.

void _receivedTNDataHandler ( ReceivedTNData msg  ) 

Receives a list of TNs coming from the home PE of a migrated object (parallel restart).

Definition at line 2846 of file ckcausalmlog.C.

void _receivedDetDataHandler ( ReceivedDetData msg  ) 

Receives a list of determinants coming from the home PE of a migrated object (parallel restart).

Definition at line 2828 of file ckcausalmlog.C.

void _distributedLocationHandler ( char *  receivedMsg  ) 

Handler to update information about an object just received.

Definition at line 3122 of file ckcausalmlog.C.

void _sendBackLocationHandler ( char *  receivedMsg  ) 

Handler to receive back a location.

Definition at line 3085 of file ckcausalmlog.C.

void _updateHomeRequestHandler ( RestartRequest updateRequest  ) 

Updates the homePe for all chares in this processor.

Definition at line 2388 of file ckcausalmlog.C.

void _updateHomeAckHandler ( RestartRequest updateHomeAck  ) 

Receives the updateHome ACKs from all other processors.

Once everybody has replied, it sends a request to resend the logged messages.

Definition at line 2307 of file ckcausalmlog.C.

void _verifyAckRequestHandler ( VerifyAckMsg verifyRequest  ) 

Definition at line 2113 of file ckcausalmlog.C.

void _verifyAckHandler ( VerifyAckMsg verifyReply  ) 

Definition at line 2139 of file ckcausalmlog.C.

void _dummyMigrationHandler ( DummyMigrationMsg msg  ) 

this handler is used to process a dummy migration msg.

it looks up the load balancer and calls migrated for it

Definition at line 3203 of file ckcausalmlog.C.

void _restartHandler ( RestartRequest restartMsg  ) 

Function to restart this processor.

The handler is invoked by a member of its same team in message logging.

Definition at line 1879 of file ckcausalmlog.C.

void _getRestartCheckpointHandler ( RestartRequest restartMsg  ) 

Gets the stored checkpoint but calls another function in the sender.

Definition at line 1911 of file ckcausalmlog.C.

void _recvRestartCheckpointHandler ( char *  _restartData  ) 

Receives the checkpoint coming from its buddy.

This is the case of restart for one team member that did not crash.

Definition at line 1951 of file ckcausalmlog.C.

void startLoadBalancingMlog ( void(*)(void *)  fnPtr,
void *  _centralLb 
)

Load Balancing.

Definition at line 3394 of file ckcausalmlog.C.

void finishedCheckpointLoadBalancing (  ) 

Definition at line 3407 of file ckcausalmlog.C.

void sendMlogLocation ( int  targetPE,
envelope env 
)

Definition at line 3416 of file ckcausalmlog.C.

void resumeFromSyncRestart ( void *  data,
ChareMlogData mlogData 
)

Definition at line 3513 of file ckcausalmlog.C.

void restoreParallelRecovery ( void(*)(void *)  fnPtr,
void *  _centralLb 
)

Restores objects after parallel recovery, either by sending back the immigrant objects or by waiting for all emigrant objects to be back.

Definition at line 3377 of file ckcausalmlog.C.

void _receiveMlogLocationHandler ( void *  buf  ) 

Definition at line 3499 of file ckcausalmlog.C.

void _receiveMigrationNoticeHandler ( MigrationNotice msg  ) 

Definition at line 3468 of file ckcausalmlog.C.

void _receiveMigrationNoticeAckHandler ( MigrationNoticeAck msg  ) 

Definition at line 3479 of file ckcausalmlog.C.

void _getGlobalStepHandler ( LBStepMsg msg  ) 

Definition at line 3668 of file ckcausalmlog.C.

void _recvGlobalStepHandler ( LBStepMsg msg  ) 

Receives the global step handler from PE 0.

Definition at line 3680 of file ckcausalmlog.C.

void _checkpointBarrierHandler ( CheckpointBarrierMsg msg  ) 

Processor 0 receives a contribution from every other processor after checkpoint.

Definition at line 3527 of file ckcausalmlog.C.

void _checkpointBarrierAckHandler ( CheckpointBarrierMsg msg  ) 

Definition at line 3538 of file ckcausalmlog.C.

int getCheckPointPE (  ) 

Getting the pe number of the current processor's buddy.

In the team-based approach each processor might checkpoint in the next team, but currently teams are only meant to reduce memory overhead. Note: function getReverseCheckPointPE performs the reverse map. It must be changed accordingly.

Definition at line 4097 of file ckcausalmlog.C.

int getReverseCheckPointPE (  ) 

bool isSameDet ( Determinant first,
Determinant second 
) [inline]

Definition at line 4116 of file ckcausalmlog.C.

References Determinant::receiver, Determinant::sender, Determinant::SN, and Determinant::TN.

Referenced by _storeDeterminantsHandler().

Here is the caller graph for this function:

void forAllCharesDo ( MlogFn  fnPointer,
void *  data 
)

Map function pointed by fnPointer over all the chares living in this processor.

Definition at line 3254 of file ckcausalmlog.C.

envelope* copyEnvelope ( envelope env  ) 

Definition at line 4109 of file ckcausalmlog.C.

void _resetNodeBocInitVec ( void   ) 

void informLocationHome ( CkGroupID  mgrID,
CkArrayIndexMax  idx,
int  homePE,
int  currentPE 
)

method that informs an array elements home processor of its current location It is a converse method to bypass the charm++ message logging framework

Definition at line 3610 of file ckcausalmlog.C.

void _receiveLocationHandler ( CurrentLocationMsg data  ) 

Definition at line 3626 of file ckcausalmlog.C.

void CmiDeliverRemoteMsgHandlerRange ( int  lowerHandler,
int  higherHandler 
)


Variable Documentation

char objString[100]

Definition at line 177 of file ckcausalmlog.C.

Definition at line 178 of file ckcausalmlog.C.

Definition at line 179 of file ckcausalmlog.C.

Definition at line 180 of file ckcausalmlog.C.

Definition at line 183 of file ckcausalmlog.C.

Definition at line 181 of file ckcausalmlog.C.

Definition at line 182 of file ckcausalmlog.C.

Definition at line 195 of file ckcausalmlog.C.

Definition at line 196 of file ckcausalmlog.C.

Definition at line 197 of file ckcausalmlog.C.

Definition at line 198 of file ckcausalmlog.C.

Definition at line 199 of file ckcausalmlog.C.

Definition at line 200 of file ckcausalmlog.C.

Definition at line 193 of file ckcausalmlog.C.

Definition at line 194 of file ckcausalmlog.C.

Definition at line 185 of file ckcausalmlog.C.

Definition at line 186 of file ckcausalmlog.C.

Definition at line 187 of file ckcausalmlog.C.

For testing on clusters we might carry out restarts on a porcessor without actually starting it 1 -> false restart 0 -> restart after an actual crash.

Definition at line 227 of file ckcausalmlog.C.

void* centralLb

Definition at line 228 of file ckcausalmlog.C.

void(* resumeLbFnPtr)(void *)

Definition at line 230 of file ckcausalmlog.C.

Definition at line 231 of file ckcausalmlog.C.

Definition at line 232 of file ckcausalmlog.C.

Definition at line 190 of file ckcausalmlog.C.

Definition at line 191 of file ckcausalmlog.C.

Definition at line 233 of file ckcausalmlog.C.

Definition at line 234 of file ckcausalmlog.C.

Definition at line 236 of file ckcausalmlog.C.

Definition at line 237 of file ckcausalmlog.C.

Definition at line 251 of file ckcausalmlog.C.


Generated on Mon Sep 21 07:57:43 2020 for Charm++ by  doxygen 1.5.5