MCPcopy Create free account
hub / github.com/BirolLab/abyss / sendControlMessage

Method sendControlMessage

Parallel/CommLayer.cpp:156–161  ·  view source on GitHub ↗

Send a control message to every other process. */

Source from the content-addressed store, hash-verified

154
155/** Send a control message to every other process. */
156void CommLayer::sendControlMessage(APControl m, int argument)
157{
158 for (int i = 0; i < opt::numProc; i++)
159 if (i != opt::rank) // Don't send the message to myself.
160 sendControlMessageToNode(i, m, argument);
161}
162
163/** Send a control message to a specific node. */
164uint64_t CommLayer::sendControlMessageToNode(int nodeID,

Callers 9

controlErodeMethod · 0.45
controlRemoveMarkedMethod · 0.45
controlTrimRoundMethod · 0.45
controlCoverageMethod · 0.45
runControlMethod · 0.45
controlPopBubblesMethod · 0.45
controlMarkAmbiguousMethod · 0.45
controlSplitAmbiguousMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected