Hi, I’ve been looking into using the C++ RPC server for remote devices in order to remove the python dependency, making deployment to remote devices much more simple. Currently, I see it hang whenever trying to run an external module - standard TVM modules work fine. This locks up the server completely and it will not accept any new connections, I have to restart the server to run another module. The tests I’m using run perfectly using the python implementation of the RPC server, hence the thought that this is an issue with the c++ implementation. I’m not entirely sure how to go about debugging this, although it seems to lock up after successfully loading the module on the remote device.
I was wondering how well this implementation is maintained since it doesn’t look like a core part of TVM; did it get updated with changes to the RPC protocol? Is there anyone else using the c++ implementation also experiencing a similar issue?