echuraev opened a new pull request #7013:
URL: https://github.com/apache/tvm/pull/7013


   This change fix problem with version of IP protocol on MacOS.
   Previous the rpc_tracker and query_rpc_tracker were not able connect to
   each other with default hostnames.
   The root cause was in method `socket.getaddrinfo`. In rpc_tracker the
   default hostname was "0.0.0.0" and `getaddrinfo` returned IPv4 type. In
   query_rpc_tracker the default hastname is "localhost" and `getaddrinfo`
   on MacOS returns IPv6 type. Note: on Linux both have IPv4 type.
   These tools worked by different protocols and this is why
   query_rpc_tracker wasn't able connect to rpc_tracker.
   
   Now the default hostnames are the same. So it works fine on MacOS.
   
   @tqchen, @jroesch Could you please review it?
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to