Sending global rank to server
(self)
| 81 | self.sock.connect((self.host, self.port)) |
| 82 | |
| 83 | def __start_rank_pairing(self) -> None: |
| 84 | """Sending global rank to server""" |
| 85 | utils.send_int(self.sock, self.global_rank) |
| 86 | |
| 87 | def start(self) -> None: |
| 88 | """Start the client. |