Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
3259e6b3
Commit
3259e6b3
authored
Mar 31, 2019
by
Alexander Pivovarov
Committed by
Tianqi Chen
Mar 31, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PRC typo (#2939)
parent
11b09cc5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
python/tvm/exec/measure_peak.py
+1
-1
python/tvm/exec/query_rpc_tracker.py
+1
-1
python/tvm/exec/rpc_proxy.py
+1
-1
python/tvm/exec/rpc_server.py
+2
-2
python/tvm/exec/rpc_tracker.py
+2
-2
No files found.
python/tvm/exec/measure_peak.py
View file @
3259e6b3
...
...
@@ -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
PR
C'
)
help
=
'The port of the
RP
C'
)
args
=
parser
.
parse_args
()
logging
.
basicConfig
(
level
=
logging
.
INFO
)
...
...
python/tvm/exec/query_rpc_tracker.py
View file @
3259e6b3
...
...
@@ -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
PR
C'
)
help
=
'The port of the
RP
C'
)
args
=
parser
.
parse_args
()
logging
.
basicConfig
(
level
=
logging
.
INFO
)
...
...
python/tvm/exec/rpc_proxy.py
View file @
3259e6b3
...
...
@@ -56,7 +56,7 @@ if __name__ == "__main__":
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
PR
C'
)
help
=
'The port of the
RP
C'
)
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
,
...
...
python/tvm/exec/rpc_server.py
View file @
3259e6b3
...
...
@@ -37,9 +37,9 @@ if __name__ == "__main__":
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
PR
C'
)
help
=
'The port of the
RP
C'
)
parser
.
add_argument
(
'--port-end'
,
type
=
int
,
default
=
9199
,
help
=
'The end search port of the
PR
C'
)
help
=
'The end search port of the
RP
C'
)
parser
.
add_argument
(
'--tracker'
,
type
=
str
,
help
=
"The address of RPC tracker in host:port format. "
"e.g. (10.77.1.234:9190)"
)
...
...
python/tvm/exec/rpc_tracker.py
View file @
3259e6b3
...
...
@@ -20,9 +20,9 @@ if __name__ == "__main__":
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
PR
C'
)
help
=
'The port of the
RP
C'
)
parser
.
add_argument
(
'--port-end'
,
type
=
int
,
default
=
9199
,
help
=
'The end search port of the
PR
C'
)
help
=
'The end search port of the
RP
C'
)
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
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment