MCPcopy Index your code
hub / github.com/dmlc/dgl / client_barrier

Function client_barrier

python/dgl/distributed/rpc.py:1099–1104  ·  view source on GitHub ↗

Barrier all client processes

()

Source from the content-addressed store, hash-verified

1097
1098
1099def client_barrier():
1100 """Barrier all client processes"""
1101 req = ClientBarrierRequest()
1102 send_request(0, req)
1103 res = recv_response()
1104 assert res.msg == "barrier"
1105
1106
1107def finalize_server():

Callers

nothing calls this directly

Calls 3

send_requestFunction · 0.85
recv_responseFunction · 0.85

Tested by

no test coverage detected