pytorch
f003008d - Allow TCPStore to pick a port to bind to. (#31674)

Commit
5 years ago
Allow TCPStore to pick a port to bind to. (#31674) Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/31674 The motivation of this PR was to fix the problem where we would see "Address already in use" issues for TCPStoreTest due to port conflicts. To resolve this: 1. We can now pass in port 0 for TCPStore and retrieve the port it actually bound to using a new getPort() API. 2. Added a `wait` flag to TCPStore constructor indicating whether or not it should wait for workers (defaults to true). 3. Made `waitForWorkers` a public API to ensure that we can construct TCPStore without waiting and wait for workers separately. This helps in TCPStoreTest to ensure we can retrieve the port and pass it to the client stores. ghstack-source-id: 96486845 Test Plan: waitforbuildbot Differential Revision: D19240947 fbshipit-source-id: 7b1d1cb2730209fac788764845f1dbbe73d75d9b
Author
Parents
Loading