-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[VTA] tvm.rpc.server.start
is not called
#8603
Comments
Also see this thread |
THanks @minils for reporting. This is likely due to our recent update to rpc server and results the requirement of the function to be registered within the rpc server launch. |
Please see if #8604 fixes the problem |
Thanks @tqchen for looking into this.
I could previously fix this error by moving some functions from |
Thanks for the note, please see if #8671 fixes the problem |
Closing, can be re-opened if issue is still occurring. |
When running the script
python vta/tests/python/pynq/test_program_rpc.py
, the functiontvm.rpc.server.start
is never called on the target (PYNQ in my case) which leads to anAttributeError: Module has no function 'tvm.contrib.vta.init'
because the function is not registered (seevta/python/vta/exec/rpc_server.py:65
).The function should be called at
src/runtime/rpc/rpc_endpoint.cc:728
But the ServerLoop is also not called. Not sure why...
The text was updated successfully, but these errors were encountered: