MCPcopy Create free account
hub / github.com/antmachineintelligence/mtgbmcode / Send

Method Send

python-package/compile/src/network/linkers.h:215–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215inline void Linkers::Send(int rank, char* data, int64_t len) const {
216 int64_t used = 0;
217 do {
218 int cur_size = static_cast<int>(std::min<int64_t>(len - used, INT32_MAX));
219 Send(rank, data + used, cur_size);
220 used += cur_size;
221 } while (used < len);
222}
223
224inline void Linkers::SendRecv(int send_rank, char* send_data, int64_t send_len,
225 int recv_rank, char* recv_data, int64_t recv_len) {

Callers 2

ConstructMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected