echuraev commented on code in PR #13420:
URL: https://github.com/apache/tvm/pull/13420#discussion_r1025986836


##########
tests/python/unittest/test_runtime_rpc.py:
##########
@@ -448,10 +448,10 @@ def check_remote():
 
 
 @tvm.testing.requires_rpc
-def test_rpc_tracker_register():
+@pytest.mark.parametrize("device_key", ["test_device", "127.0.0.1:5555"])

Review Comment:
   Hm... It looks strange that the test has failed before with 
"127.0.0.1:5555". I wrote the following code:
   ```python
   key = "127.0.0.1:5555"
   
   print(key.split(":")[0])
   print(key.rsplit(":", 1)[0])
   ```
   
   And expectedly received the following result:
   ```
   127.0.0.1
   127.0.0.1
   ```
   
   What is the problem to add one more key, e.g. 
`hexagon-dev.192.168.0.143:5555:0.513619`?



-- 
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: commits-unsubscr...@tvm.apache.org

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

Reply via email to