junrushao1994 commented on a change in pull request #10811:
URL: https://github.com/apache/tvm/pull/10811#discussion_r837143389
##########
File path: python/tvm/rpc/client.py
##########
@@ -332,7 +330,7 @@ def text_summary(self):
sorted_server = sorted(data["server_info"], key=lambda x: x["key"])
for item in sorted_server:
addr = item["addr"]
- res += "%21s " % ":".join(addr)
+ res += "%21s " % ":".join(map(str, addr))
Review comment:
This fixes a bug introduced by #10641 where `tvm.exec.query_rpc_tracker`
fails where some element in `addr` is integer
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]