Skip to content

Commit

Permalink
Fix PRC typo (apache#2939)
Browse files Browse the repository at this point in the history
  • Loading branch information
apivovarov authored and wweic committed Apr 10, 2019
1 parent 987a7d0 commit 25c72c9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion python/tvm/exec/measure_peak.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def main():
parser.add_argument('--rpc-host', type=str, default="0.0.0.0",
help='the hostname of the server')
parser.add_argument('--rpc-port', type=int, default=9090,
help='The port of the PRC')
help='The port of the RPC')

args = parser.parse_args()
logging.basicConfig(level=logging.INFO)
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/exec/query_rpc_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def main():
parser.add_argument('--host', type=str, default="",
help='the hostname of the tracker')
parser.add_argument('--port', type=int, default=None,
help='The port of the PRC')
help='The port of the RPC')
args = parser.parse_args()
logging.basicConfig(level=logging.INFO)

Expand Down
2 changes: 1 addition & 1 deletion python/tvm/exec/rpc_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def main(args):
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,
help='The port of the PRC')
help='The port of the RPC')
parser.add_argument('--web-port', type=int, default=8888,
help='The port of the http/websocket server')
parser.add_argument('--example-rpc', type=bool, default=False,
Expand Down
4 changes: 2 additions & 2 deletions python/tvm/exec/rpc_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ def main(args):
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,
help='The port of the PRC')
help='The port of the RPC')
parser.add_argument('--port-end', type=int, default=9199,
help='The end search port of the PRC')
help='The end search port of the RPC')
parser.add_argument('--tracker', type=str,
help="The address of RPC tracker in host:port format. "
"e.g. (10.77.1.234:9190)")
Expand Down
4 changes: 2 additions & 2 deletions python/tvm/exec/rpc_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ def main(args):
parser.add_argument('--host', type=str, default="0.0.0.0",
help='the hostname of the tracker')
parser.add_argument('--port', type=int, default=9190,
help='The port of the PRC')
help='The port of the RPC')
parser.add_argument('--port-end', type=int, default=9199,
help='The end search port of the PRC')
help='The end search port of the RPC')
parser.add_argument('--no-fork', dest='fork', action='store_false',
help="Use spawn mode to avoid fork. This option \
is able to avoid potential fork problems with Metal, OpenCL \
Expand Down

0 comments on commit 25c72c9

Please sign in to comment.