Skip to content
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] Improved RPC for VTA #2043

Merged
merged 10 commits into from
Nov 12, 2018
Next Next commit
assign default port to 9091 as the documented
  • Loading branch information
liangfu authored Oct 31, 2018
commit dae65f2e2466966d7a60841b2524584eca538afe
2 changes: 1 addition & 1 deletion vta/python/vta/exec/rpc_server.py
Original file line number Diff line number Diff line change
@@ -99,7 +99,7 @@ def main():
parser = argparse.ArgumentParser()
parser.add_argument('--host', type=str, default="0.0.0.0",
help='the hostname of the server')
parser.add_argument('--port', type=int, default=9090,
parser.add_argument('--port', type=int, default=9091,
help='The port of the PRC')
parser.add_argument('--port-end', type=int, default=9199,
help='The end search port of the PRC')